GetFundingResponse.fromJson constructor

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

Implementation

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