fromString static method
Implementation
static AffiseConfig? fromString(String? value) {
if (value == null) return null;
return AffiseConfig.values.firstElementOrNull((e) => e.value == value);
}
static AffiseConfig? fromString(String? value) {
if (value == null) return null;
return AffiseConfig.values.firstElementOrNull((e) => e.value == value);
}