Files
elcaribe/source_code/lib/custom/select_payment_list.dart
2023-08-07 15:52:04 -04:00

14 lines
335 B
Dart

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;
}
}