va_start method
Initializes a va_list to be used with va_arg and va_end.
In C, this takes the va_list and the last known fixed argument.
In Dart, this takes the List<dynamic> of variadic arguments
and returns an initialized va_list.
Implementation
va_list va_start(List<dynamic> args) {
return va_list(args);
}