cloneWithOptions method

  1. @override
Shell cloneWithOptions(
  1. ShellOptions options
)

Clone a new shell with the given options.

Implementation

@override
Shell cloneWithOptions(ShellOptions options) {
  var shell = context.shell(options: options);
  return shell;
}