fromIndex static method

CountryCodeSource fromIndex(
  1. int? index
)

Implementation

static CountryCodeSource fromIndex(int? index) {
  return CountryCodeSource.values.singleWhere(
    (element) => element.value == index,
    orElse: () => CountryCodeSource.UNSPECIFIED,
  );
}