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