Query$getCountries.fromJson constructor

Query$getCountries.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$getCountries.fromJson(Map<String, dynamic> json) {
  final l$getCountries = json['getCountries'];
  return Query$getCountries(
      getCountries: (l$getCountries as List<dynamic>)
          .map((e) => Query$getCountries$getCountries.fromJson(
              (e as Map<String, dynamic>)))
          .toList());
}