subTasks method

  1. @nonVirtual
List<HookTask> subTasks(
  1. Iterable<String> filePaths
)

Returns the list of sub-tasks for the given file paths.

filePaths is the list of file paths to process post-filtering.

Implementation

@nonVirtual
List<HookTask> subTasks(Iterable<String> filePaths) =>
    _subTasks ??= getSubTasks(filePaths);