class DistrictsResponse { List? districts; String? error; String? message; DistrictsResponse({this.districts, this.error, this.message}); DistrictsResponse.fromJson(Map json) { if (json['districts'] != null) { districts = []; json['districts'].forEach((v) { districts!.add(new Districts.fromJson(v)); }); } error = json['error']; message = json['message']; } Map toJson() { final Map data = new Map(); if (this.districts != null) { data['districts'] = this.districts!.map((v) => v.toJson()).toList(); } data['error'] = this.error; data['message'] = this.message; return data; } } class Districts { String? id; String? state; String? district; String? date; String? isExists; String? createdDatetime; String? updatedDatetime; Districts({ this.id, this.state, this.district, this.date, this.isExists, this.createdDatetime, this.updatedDatetime, }); Districts.fromJson(Map json) { id = json['id']; state = json['state']; district = json['district']; date = json['date']; isExists = json['is_exists']; createdDatetime = json['created_datetime']; updatedDatetime = json['updated_datetime']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['state'] = this.state; data['district'] = this.district; data['date'] = this.date; data['is_exists'] = this.isExists; data['created_datetime'] = this.createdDatetime; data['updated_datetime'] = this.updatedDatetime; return data; } }