fromValue static method

SupplementalMode fromValue(
  1. String value
)

Implementation

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