backgroundJobsSupported property

  1. @override
bool get backgroundJobsSupported
override

Whether startShellJob actually works here. Decorators forward their delegate's answer, so wrapping an env never fakes the capability.

Implementation

@override
bool get backgroundJobsSupported {
  final shell = _shell;
  if (shell case final BackgroundShell bg) return bg.backgroundJobsSupported;
  return false;
}