class RazorPayResponse{ bool? status; String? message; String? razorPayKey; String? razorPaySecretKey; RazorPayResponse.fromJson(Map json){ status = (json["Code"] ?? "") != "0"; razorPayKey = json["Key"] ?? ""; razorPaySecretKey = json["secretKey"] ?? ""; message = json["Message"] ?? "Something went wrong"; } RazorPayResponse.withError(String err){ status = false; message = err; } }