checkout method

  1. @override
Future<SimpleProcessResult> checkout({
  1. List<String>? options,
  2. bool? skipOnError,
  3. HandlerFunction? handlerFn,
  4. bool? showOutput,
})
inherited

checkout

Implementation

@override
T checkout(
        {List<String>? options,
        bool? skipOnError,
        handlerFn,
        bool? showOutput}) =>
    runner.run(
        args: ['checkout', ...?options],
        showOutput: showOutput,
        handlerFn: handlerFn,
        skipOnError: skipOnError);