CheckfundLimitModel.fromJson constructor

CheckfundLimitModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CheckfundLimitModel.fromJson(Map<String, dynamic> json) {
  return CheckfundLimitModel(
    responseCode: json['Response_Code'] ?? "",
    message: json['Message'] ?? "",
  );
}