JsonSchemaAnnotations.fromJson constructor
JsonSchemaAnnotations.fromJson(
- Map json_
Implementation
JsonSchemaAnnotations.fromJson(core.Map json_)
: this(
required: (json_['required'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);