fromValue static method

AdropConsentDebugGeography fromValue(
  1. int value
)

Implementation

static AdropConsentDebugGeography fromValue(int value) {
  return AdropConsentDebugGeography.values.firstWhere(
    (geography) => geography.value == value,
    orElse: () => AdropConsentDebugGeography.disabled,
  );
}