GetBalanceResponse.fromMap constructor

GetBalanceResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory GetBalanceResponse.fromMap(Map<String, dynamic> json) => GetBalanceResponse(
  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"],
);