fromJson static method

RenderStrategy fromJson(
  1. String json
)

Implementation

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