TaskCard constructor
const TaskCard({Key? key, required Appointment appointment, required bool showMoreOptions, required Task task})
Implementation
const TaskCard({
Key? key,
required this.appointment,
required this.showMoreOptions,
required this.task,
}) : super(key: key);