fromValue static method

ConnectAuthMethod fromValue(
  1. String value
)

Implementation

static ConnectAuthMethod fromValue(String value) {
  final type =
      ConnectAuthMethod.values.firstWhereOrNull((e) => e.value == value);

  return type ?? ConnectAuthMethod.internetBanking;
}