fromValue static method

EMDKSubErrorCode fromValue(
  1. String value
)

Implementation

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