fromValue static method

ResendDomainStatus fromValue(
  1. String value
)

Method for returning a domain status based on a provided value

Implementation

static ResendDomainStatus fromValue(String value) {
  return ResendDomainStatus.values.firstWhere((s) => s.id == value);
}