nextListOf<T> method

List<T> nextListOf<T>(
  1. int seed
)

Returns a new value out of a provided seed as a list and casts the list type to T

  • seed: The seed used to generate a new value

Returns a new list generated from the provided seed as a List<T>

Implementation

List<T> nextListOf<T>(int seed) {
  return (nextValueAs(seed) as List).cast<T>();
}