Query$quest$quest$remuneration$wallet$owner$pos$locations.fromJson constructor

Query$quest$quest$remuneration$wallet$owner$pos$locations.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$quest$quest$remuneration$wallet$owner$pos$locations.fromJson(
    Map<String, dynamic> json) {
  final l$city = json['city'];
  final l$address = json['address'];
  final l$postCode = json['postCode'];
  final l$location = json['location'];
  final l$country = json['country'];
  final l$state = json['state'];
  final l$owner = json['owner'];
  return Query$quest$quest$remuneration$wallet$owner$pos$locations(
    city: (l$city as String?),
    address: (l$address as String?),
    postCode: (l$postCode as String?),
    location: l$location == null
        ? null
        : Query$quest$quest$remuneration$wallet$owner$pos$locations$location
            .fromJson((l$location as Map<String, dynamic>)),
    country: l$country == null
        ? null
        : Query$quest$quest$remuneration$wallet$owner$pos$locations$country
            .fromJson((l$country as Map<String, dynamic>)),
    state: l$state == null
        ? null
        : Query$quest$quest$remuneration$wallet$owner$pos$locations$state
            .fromJson((l$state as Map<String, dynamic>)),
    owner: l$owner == null
        ? null
        : Query$quest$quest$remuneration$wallet$owner$pos$locations$owner
            .fromJson((l$owner as Map<String, dynamic>)),
  );
}