fromRawValue static method

MigrationOfferState fromRawValue(
  1. String value
)

Implementation

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