status method

  1. @override
Future<SimpleProcessResult> status({
  1. bool? skipOnError,
  2. HandlerFunction? handlerFn,
  3. bool? showOutput,
})
inherited

Show status

Implementation

@override
T status({bool? skipOnError, HandlerFunction? handlerFn, bool? showOutput}) =>
    runner.run(
        args: ['status'],
        showOutput: showOutput,
        handlerFn: handlerFn,
        skipOnError: skipOnError);