sample method

  1. @override
Iterable<String> sample(
  1. Iterable<String> items
)
override

Samples a collection of items

  • items: The list of items to sample

Returns a new collection sampled from the original

Implementation

@override
Iterable<String> sample(Iterable<String> items) {
  return items;
}