getWalletType function
Implementation
WalletType getWalletType(String walletName) {
if (walletName == "Google Pay") {
return WalletType.googlePay;
} else if (walletName == "Apple Pay") {
return WalletType.applePay;
} else {
return WalletType.others;
}
}