This commit is contained in:
PhyoThandar
2020-06-29 16:03:41 +06:30
parent 94e9d79595
commit 8fbfac38de
11 changed files with 701 additions and 273 deletions

View File

@@ -4,7 +4,13 @@ class PaymentMethod {
String account;
String phone;
String mail;
String link;
PaymentMethod(
{this.name, this.accountName, this.account, this.phone, this.mail});
{this.name,
this.accountName,
this.account,
this.phone,
this.mail,
this.link});
}