takeLast method

List<T> takeLast(
  1. int n
)

Implementation

List<T> takeLast(int n) => skip(length - n).toList();