examplesWithoutValidation property
Interesting examples of instances (may be valid or invalid).
Use examples to get valid examples.
Use examplesThatAreInvalid to get invalid examples.
Implementation
@override
Iterable<T?> get examplesWithoutValidation sync* {
yield (null);
yield* (elementKind.examplesWithoutValidation);
}