fromValue static method
Implementation
static ConnectAuthMethod fromValue(String value) {
final type =
ConnectAuthMethod.values.firstWhereOrNull((e) => e.value == value);
return type ?? ConnectAuthMethod.internetBanking;
}
static ConnectAuthMethod fromValue(String value) {
final type =
ConnectAuthMethod.values.firstWhereOrNull((e) => e.value == value);
return type ?? ConnectAuthMethod.internetBanking;
}