toggleExpandStatus method

void toggleExpandStatus()

Implementation

void toggleExpandStatus() {
  calendarLogic.expandStatus.value = !calendarLogic.expandStatus.value;
  LogUtil.log(
      TAG: this.runtimeType,
      message: "toggleExpandStatus:${calendarLogic.expandStatus.value}");
}