feat : live stock batch

This commit is contained in:
2025-08-09 16:58:52 +03:30
parent c05086a37b
commit 2669af7a92
16 changed files with 1974 additions and 141 deletions

View File

@@ -16,7 +16,7 @@ _Address _$AddressFromJson(Map<String, dynamic> json) => _Address(
district: json['district'] as String?,
county: json['county'] as String?,
province: json['province'] as String?,
ISO3166_2_lvl4: json['ISO3166_2_lvl4'] as String?,
ISO3166_2_lvl4: json['i_s_o3166_2_lvl4'] as String?,
postcode: json['postcode'] as String?,
country: json['country'] as String?,
country_code: json['country_code'] as String?,
@@ -32,7 +32,7 @@ Map<String, dynamic> _$AddressToJson(_Address instance) => <String, dynamic>{
'district': instance.district,
'county': instance.county,
'province': instance.province,
'ISO3166_2_lvl4': instance.ISO3166_2_lvl4,
'i_s_o3166_2_lvl4': instance.ISO3166_2_lvl4,
'postcode': instance.postcode,
'country': instance.country,
'country_code': instance.country_code,