examplesWithoutValidation property

  1. @override
Iterable<T> examplesWithoutValidation
override

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* {
  final mapper = _InterestingExamplesMapper();
  do {
    final instance = mapDefault(mapper);
    yield (instance);
  } while (!mapper._isDone);
}