start method

Future<void> start({
  1. int? timeout,
})

Implementation

Future<void> start({int? timeout}) {
  return _method.invokeMethod('start', {
    if (timeout != null) 'timeout': timeout,
  });
}