onWeekChange property

dynamic Function(List<DateTime>)? onWeekChange
final

get the list of DateTime on week change

onWeekChange: (List<DateTime> list){
   log("First date: ${list.first}");
   log("Last date: ${list.last}");
}

Implementation

final Function(List<DateTime>)? onWeekChange;