ServerModel.fromJson constructor

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

Implementation

factory ServerModel.fromJson(Map<String, dynamic> json) => ServerModel(
  versionEnable: json["versionEnable"],
  payment: json["payment"],
  hash: json["hash"],
  sha: json["sha"],
  server: json["server"],
  message: json["message"],
);