factory DistrictModel.fromJson(Map<String, dynamic> json) { return DistrictModel( id: json['id'], cityId: json['city_id'], name: json['name'], ); }