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

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

Implementation

factory Query$quest$quest$remuneration$wallet$owner$pos$locations$location.fromJson(
    Map<String, dynamic> json) {
  final l$type = json['type'];
  final l$coordinates = json['coordinates'];
  return Query$quest$quest$remuneration$wallet$owner$pos$locations$location(
    type: l$type == null
        ? null
        : fromJson$Enum$ZoneTypesEnum((l$type as String)),
    coordinates: (l$coordinates as List<dynamic>?)
        ?.map((e) => (e as num).toDouble())
        .toList(),
  );
}