fromValue static method
Implementation
static PushPlatforms? fromValue(String value) {
for (final option in PushPlatforms.values) {
if (option.type == value) {
return option;
}
}
return null;
}
static PushPlatforms? fromValue(String value) {
for (final option in PushPlatforms.values) {
if (option.type == value) {
return option;
}
}
return null;
}