GetClientResponse.fromJson constructor

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

Implementation

GetClientResponse.fromJson(Map<String, dynamic> json) {
  if (json['Client'] != null) {
    client = [];
    json['Client'].forEach((v) {
      client!.add(Client.fromJson(v));
    });
  }
}