Application/medcify/lib/models/api/razor_pay_failure_response.dart

15 lines
311 B
Dart
Raw Normal View History

2022-09-26 06:33:52 +00:00
class RazorPayFailureResponse{
RazorPayError? error;
RazorPayFailureResponse.fromJson(Map<String, dynamic> json){
error = RazorPayError.fromJson(json["error"]);
}
}
class RazorPayError{
String? desc;
RazorPayError.fromJson(Map<String, dynamic> json){
desc = json["description"] ?? "";
}
}