scrollMonth property

String get scrollMonth

Implementation

String get scrollMonth {
  DateTime newDate = DateTime(scrollYearInt, scrollMonthInt);
  if (newDate.month != _scrollMonth?.month) {
    _scrollMonth = newDate;
    widget.onMonthChange?.call(_scrollMonth!);
  }
  return '$scrollMonthInt';
}