fromJson static method
Implementation
static SearchStrategy fromJson(dynamic json) {
for (final value in values) {
if (value.raw == json) return value;
}
throw ArgumentError.value(json, "raw", "No enum value with that value");
}
static SearchStrategy fromJson(dynamic json) {
for (final value in values) {
if (value.raw == json) return value;
}
throw ArgumentError.value(json, "raw", "No enum value with that value");
}