UGetBalanceResponse.fromMap constructor
UGetBalanceResponse.fromMap(
- Map<String, dynamic> json
)
Implementation
factory UGetBalanceResponse.fromMap(Map<String, dynamic> json) => UGetBalanceResponse(
reserve: json["reserve"],
serverDateTime: json["serverDateTime"],
status: json["status"],
code: json["code"],
message: json["message"],
balance: json["balance"],
wallet: json["wallet"],
credit: json["credit"],
limit: json["limit"],
help: json["help"],
messageSource: json["messageSource"],
extCode: json["extCode"],
);