class ServiceBoy { final String id; final String name; final String phone; ServiceBoy({ required this.id, required this.name, required this.phone, }); factory ServiceBoy.fromJson(Map json) { return ServiceBoy( id: json['_id'], name: json['name'], phone: json['phone'], ); } Map toJson() { return { '_id': id, 'name': name, 'phone': phone, }; } }