fromValue static method

ResendDomainRegion fromValue(
  1. String value
)

Method for returning a domain region based on a provided value

Implementation

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