properties property

Map<String, Schema>? get properties

A map of the properties of the object to the nested Schemas for those properties.

Implementation

Map<String, Schema>? get properties =>
    (_value['properties'] as Map?)?.cast<String, Schema>();