ShellTask.always constructor

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

Implementation

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