Skip to content

Commit 7a56c67

Browse files
committed
fix(shopinbit): car fee view
1 parent cd00b5c commit 7a56c67

7 files changed

Lines changed: 100 additions & 389 deletions

lib/models/shopinbit/shopinbit_request_draft.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,23 @@ import 'shopinbit_enums.dart';
33
class ShopinbitRequestDraft {
44
final ShopInBitCategory category;
55
final String requestDescription;
6-
final String deliveryCountry;
6+
final String deliveryCountryName;
7+
final String deliveryCountryCode;
78
final String? voucherCode;
89

910
ShopinbitRequestDraft({
1011
required this.category,
1112
required this.requestDescription,
12-
required this.deliveryCountry,
13+
required this.deliveryCountryName,
14+
required this.deliveryCountryCode,
1315
required this.voucherCode,
1416
});
1517

1618
Map<String, dynamic> toMap() => {
1719
"category": category.apiValue,
1820
"requestDescription": requestDescription,
19-
"deliveryCountry": deliveryCountry,
21+
"deliveryCountryName": deliveryCountryName,
22+
"deliveryCountryCode": deliveryCountryCode,
2023
"voucherCode": voucherCode,
2124
};
2225

0 commit comments

Comments
 (0)