ChargeFundResponse.fromJson constructor

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

Implementation

factory ChargeFundResponse.fromJson(Map<String, dynamic> json) => ChargeFundResponse(
    status: json["status"],
    message: json["message"],
    data:json["data"] == null || json["data"] == "" ? null : ChargeFundData.fromJson(json["data"]),
);