getTask method
Get the task with the given name. Returns null if none found.
Implementation
GrinderTask getTask(String name) =>
_tasks.firstWhere((t) => t.name == name, orElse: () => null);
Get the task with the given name. Returns null if none found.
GrinderTask getTask(String name) =>
_tasks.firstWhere((t) => t.name == name, orElse: () => null);