getTask method

GrinderTask? getTask(
  1. String name
)

Get the task with the given name. Returns null if none found.

Implementation

GrinderTask? getTask(String name) =>
    _tasks.firstWhereOrNull((t) => t.name == name);