va_list constructor
va_list([
- List? args
Initializes a va_list with the given arguments.
Implementation
va_list([List<dynamic>? args])
: _args = args ?? [],
_index = 0;
Initializes a va_list with the given arguments.
va_list([List<dynamic>? args])
: _args = args ?? [],
_index = 0;