fromString static method

RecaptchaKeyClientType fromString(
  1. String value
)

Implementation

static RecaptchaKeyClientType fromString(String value) {
  return RecaptchaKeyClientType.values.firstWhere(
    (e) => e.value == value,
    orElse: () => RecaptchaKeyClientType.web,
  );
}