fromValue static method

ControlProviderKind fromValue(
  1. String v
)

Resolves a provider role from its serialized value.

Implementation

static ControlProviderKind fromValue(String v) =>
    values.firstWhere((e) => e.value == v);