EchoResponse.fromMap constructor

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

Implementation

factory EchoResponse.fromMap(Map<String, dynamic> json) => EchoResponse(
  reserve: json["reserve"],
  serverDateTime: json["serverDateTime"],
  status: json["status"],
  code: json["code"],
  message: json["message"],
  mciTopup: json["mciTopup"],
  mtn: json["mtn"],
  rightel: json["rightel"],
  shatel: json["shatel"],
  mciInternet: json["mciInternet"],
);