fromValue static method

LicensedApplicationPlan fromValue(
  1. String value
)

Implementation

static LicensedApplicationPlan fromValue(String value) =>
    values.firstWhere((e) => e.value == value,
        orElse: () => LicensedApplicationPlan._(value));