fromNative static method
Converts a native Android SDK failure value to a Flutter enum value.
Implementation
static BarterAdFailureCode fromNative(String? value) {
for (final code in values) {
if (code.nativeValue == value) {
return code;
}
}
return unknown;
}