taskListItemView method

dynamic taskListItemView(
  1. dynamic context,
  2. dynamic ref,
  3. dynamic taskList
)

Implementation

Widget taskListItemView(
  BuildContext context,
  WidgetRef ref,
  TaskList taskList,
) {
  return canExpand
      ? expandable(context, ref, taskList)
      : simple(context, ref, taskList);
}