FoldingKind.fromJson constructor

FoldingKind.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory FoldingKind.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  if (json is String) {
    try {
      return FoldingKind(json);
    } catch (_) {
      // Fall through
    }
  }
  throw jsonDecoder.mismatch(jsonPath, 'FoldingKind', json);
}