update rate

This commit is contained in:
Thinzar Win
2020-06-29 16:15:25 +06:30
parent 02450c003e
commit 8e65a533db
25 changed files with 746 additions and 136 deletions

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

@@ -0,0 +1,6 @@
class Custom{
String id;
String productType;
int fee;
Custom({this.productType,this.fee});
}