fromJson static method

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

Implementation

static City fromJson(Map<String, dynamic> json) => City(
      name: json['name'],
      countryCode: json['countryCode'],
      stateCode: json['stateCode'],
      latitude: json['latitude'],
      longitude: json['longitude'],
    );