anyOf property

List<Schema>? get anyOf

Schema combinator that requires at least one of the sub-schemas to match.

Implementation

List<Schema>? get anyOf => (_value['anyOf'] as List?)?.cast<Schema>();