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