add pagination for invoice and update ui for material 3
This commit is contained in:
@@ -14,8 +14,8 @@ class CustomDuty {
|
||||
factory CustomDuty.fromMap(Map<String, dynamic> map, String id) {
|
||||
return CustomDuty(
|
||||
id: id,
|
||||
productType: map['product_type'],
|
||||
desc: map['desc'],
|
||||
productType: map['product_type'] ?? "",
|
||||
desc: map['desc'] ?? "",
|
||||
fee: (map['fee'] ?? 0).toDouble(),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user