tail static method

List<String> tail([
  1. int tailSize = 100
])

Implementation

static List<String> tail([int tailSize = 100]) {
  return get()!._tail(tailSize);
}