insert pages

This commit is contained in:
Thinzar Win
2020-05-29 16:14:17 +06:30
parent bad27ba5c4
commit f4823d82f8
30 changed files with 1431 additions and 959 deletions

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

@@ -0,0 +1,6 @@
class Shipment {
DateTime shipDate;
String shipmentNumber;
String status;
Shipment({this.shipDate, this.shipmentNumber,this.status});
}