followedByOptional method

Iterable<T> followedByOptional(
  1. Iterable<T>? other
)

Implementation

Iterable<T> followedByOptional(Iterable<T>? other) {
  if (other == null) {
    return this;
  }
  return followedBy(other);
}