update shipment rate

This commit is contained in:
Thinzar Win
2020-06-25 16:19:23 +06:30
parent fd63f30cb4
commit 869142ec66
18 changed files with 797 additions and 300 deletions

6
lib/vo/cargo.dart Normal file
View File

@@ -0,0 +1,6 @@
class Cargo {
String type;
int price;
int weight;
Cargo({this.type, this.price, this.weight});
}