displayName property
String
get
displayName
Implementation
String get displayName {
switch (this) {
case LokotroPayChannel.none:
return 'None';
case LokotroPayChannel.all:
return 'All Methods';
case LokotroPayChannel.eflash:
return 'E-Flash';
case LokotroPayChannel.ewallet:
return 'E-Wallet';
case LokotroPayChannel.card:
return 'Payment Card';
case LokotroPayChannel.mobileMoney:
return 'Mobile Money';
case LokotroPayChannel.ewalletOtp:
return 'E-Wallet OTP';
case LokotroPayChannel.lokotroWallet:
return 'Lokotro Wallet';
case LokotroPayChannel.virtualCard:
return 'Virtual Card';
case LokotroPayChannel.bankTransfer:
return 'Bank Transfer';
case LokotroPayChannel.googlePay:
return 'Google Pay';
case LokotroPayChannel.applePay:
return 'Apple Pay';
}
}