codigo actual del servidor, con avances de joan
This commit is contained in:
14
source_code/lib/custom/select_payment_list.dart
Normal file
14
source_code/lib/custom/select_payment_list.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
class PaymentType{
|
||||
String key,value;
|
||||
PaymentType(this.key, this.value);
|
||||
}
|
||||
class PaymentOption{
|
||||
static List<PaymentType> getList(){
|
||||
List<PaymentType> list = [];
|
||||
list.add(PaymentType("select", "Select"));
|
||||
list.add(PaymentType("offline", "Offline"));
|
||||
list.add(PaymentType("online", "Online"));
|
||||
return list;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user