ShellTask.always constructor

ShellTask.always({
  1. required ShellCommands commands,
  2. List<Pattern> exclude = const [],
  3. String? workingDirectory,
  4. String? name,
})

Implementation

ShellTask.always({
  required ShellCommands commands,
  super.exclude,
  super.workingDirectory,
  String? name,
}) : _commands = commands,
     _name = name,
     _always = true,
     super.always();