fromJson static method
Implementation
static RenderStrategy fromJson(String json) {
final strategy = _jsonMap[json];
if (strategy != null) {
return strategy;
}
throw Exception("Unsupported RenderStrategy JSON value: $json");
}
static RenderStrategy fromJson(String json) {
final strategy = _jsonMap[json];
if (strategy != null) {
return strategy;
}
throw Exception("Unsupported RenderStrategy JSON value: $json");
}