fromRawValue static method

CancelFlowOutcome fromRawValue(
  1. String value
)

Implementation

static CancelFlowOutcome fromRawValue(String value) {
  return CancelFlowOutcome.values.firstWhere(
    (e) => e.rawValue == value,
    orElse: () => CancelFlowOutcome.cancelled,
  );
}