fromString static method
Implementation
static MultiFactorConfigState fromString(String value) {
return MultiFactorConfigState.values.firstWhere(
(e) => e.value == value,
orElse: () => throw FirebaseAuthAdminException(
AuthClientErrorCode.invalidArgument,
'Invalid MultiFactorConfigState: $value',
),
);
}