ChargeInternetReserveResponse.fromMap constructor

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

Implementation

factory ChargeInternetReserveResponse.fromMap(Map<String, dynamic> json) => ChargeInternetReserveResponse(
  reserve: json["reserve"],
  serverDateTime: json["serverDateTime"],
  status: json["status"],
  code: json["code"],
  message: json["message"],
  reference: json["reference"],
  traceId: json["traceId"],
  affectiveAmount: json["affectiveAmount"],
  help: json["help"],
  messageSource: json["messageSource"],
  pin: json["pin"],
);