list constructor

list([
  1. List? args
])

Implementation

list([List<dynamic>? args]) {
  _list = args ?? [];
}