stringToJsonSchemaType top-level property Null safety

Map<String, JsonSchemaType> stringToJsonSchemaType
read / write

Implementation

Map<String, JsonSchemaType> stringToJsonSchemaType = {
  'null': JsonSchemaType.nil,
  'boolean': JsonSchemaType.boolean,
  'object': JsonSchemaType.object,
  'array': JsonSchemaType.array,
  'number': JsonSchemaType.number,
  'string': JsonSchemaType.string,
  'none': JsonSchemaType.none,
};