// To parse this JSON data, do // // final branch = branchFromJson(jsonString); import 'dart:convert'; Branch branchFromJson(String str) => Branch.fromJson(json.decode(str)); String branchToJson(Branch data) => json.encode(data.toJson()); class Branch { Branch({ this.totalItemsCount, this.data, this.messageStatus, this.message, }); int? totalItemsCount; List? data; int? messageStatus; String? message; factory Branch.fromJson(Map json) => Branch( totalItemsCount: json["totalItemsCount"], data: json["data"] == null ? null : List.from(json["data"].map((x) => BranchData.fromJson(x))), messageStatus: json["messageStatus"], message: json["message"], ); Map toJson() => { "totalItemsCount": totalItemsCount, "data": data == null ? null : List.from(data!.map((x) => x.toJson())), "messageStatus": messageStatus, "message": message, }; } class BranchData { BranchData({ this.id, this.serviceProviderId, this.branchName, this.branchDescription, this.cityId, this.address, this.latitude, this.longitude, this.status, }); int? id; int? serviceProviderId; String? branchName; String? branchDescription; int? cityId; String? address; String? latitude; String? longitude; int? status; factory BranchData.fromJson(Map json) => BranchData( id: json["id"], serviceProviderId: json["serviceProviderID"], branchName: json["branchName"], branchDescription: json["branchDescription"], cityId: json["cityID"], address: json["address"], latitude: json["latitude"], longitude: json["longitude"], status: json["status"], ); Map toJson() => { "id": id, "serviceProviderID": serviceProviderId, "branchName": branchName, "branchDescription": branchDescription, "cityID": cityId, "address": address, "latitude": latitude, "longitude": longitude, "status": status, }; }