list method

List<String> list([
  1. bool useCounter = false
])

Implementation

List<String> list([bool useCounter = false])
  => this._recs
    .listView(
        counter: useCounter ? simpleCounter : null,
        tabCount: (String key) => key.length <= 2 ? 2 : 1)
    .toList();