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