emptyList<T> function

List<T> emptyList<T>([
  1. bool growable = false
])

Implementation

List<T> emptyList<T>([bool growable = false]) {
  return List.empty(growable: growable);
}