validate method
Returns an empty iterable if this is null.
Implementation
Iterable<T> validate() => this?.whereType<T>() ?? const Iterable.empty();
Returns an empty iterable if this is null.
Iterable<T> validate() => this?.whereType<T>() ?? const Iterable.empty();