shell method

  1. @override
Shell shell({
  1. ShellOptions? options,
})
override

New shell must set itself as a shell Context, shell environement is no longer relevent.

Implementation

@override
Shell shell({ShellOptions? options}) {
  return ShellMemory(context: this, options: options ?? ShellOptions());
}