va_list constructor

va_list([
  1. List? args
])

Initializes a va_list with the given arguments.

Implementation

va_list([List<dynamic>? args])
    : _args = args ?? [],
      _index = 0;