toJSONType method

JSONType toJSONType()

Implementation

JSONType toJSONType() {
  switch (this) {
    case 'DOCUMENT':
      return JSONType.document;
    case 'LINES':
      return JSONType.lines;
  }
  throw Exception('$this is not known in enum JSONType');
}