fromRawValue static method

EntitlementSource fromRawValue(
  1. String value
)

Implementation

static EntitlementSource fromRawValue(String value) {
  return EntitlementSource.values.firstWhere(
    (e) => e.rawValue == value,
    orElse: () => throw ArgumentError('Unknown EntitlementSource: $value'),
  );
}