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