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