ServerInfo.fromJson constructor

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

Implementation

factory ServerInfo.fromJson(Map<String, dynamic> json) {
  return ServerInfo(
    info: Info.fromJson(json['info']),
    status: json['status'],
  );
}