Query$user$user$residentialAddress$country.fromJson constructor

Query$user$user$residentialAddress$country.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$user$user$residentialAddress$country.fromJson(
    Map<String, dynamic> json) {
  final l$id = json['id'];
  final l$name = json['name'];
  final l$code = json['code'];
  final l$dialCode = json['dialCode'];
  final l$iconFlag = json['iconFlag'];
  final l$createdAt = json['createdAt'];
  final l$updatedAt = json['updatedAt'];
  final l$flagSquare = json['flagSquare'];
  final l$flagWide = json['flagWide'];
  return Query$user$user$residentialAddress$country(
    id: (l$id as String),
    name: (l$name as String),
    code: (l$code as String?),
    dialCode: (l$dialCode as String?),
    iconFlag: (l$iconFlag as String?),
    createdAt: dateTimeFromJson(l$createdAt),
    updatedAt: dateTimeFromJson(l$updatedAt),
    flagSquare: l$flagSquare == null
        ? null
        : Query$user$user$residentialAddress$country$flagSquare.fromJson(
            (l$flagSquare as Map<String, dynamic>)),
    flagWide: l$flagWide == null
        ? null
        : Query$user$user$residentialAddress$country$flagWide.fromJson(
            (l$flagWide as Map<String, dynamic>)),
  );
}