fromNativeValue static method

URLCredentialPersistence? fromNativeValue(
  1. int? value
)

Gets a possible URLCredentialPersistence instance from a native value.

Implementation

static URLCredentialPersistence? fromNativeValue(int? value) {
  if (value != null) {
    try {
      return URLCredentialPersistence.values.firstWhere(
        (element) => element.toNativeValue() == value,
      );
    } catch (e) {
      return null;
    }
  }
  return null;
}