CMonthNavigator constructor

const CMonthNavigator({
  1. Key? key,
  2. void onChange(
    1. DateTime date
    )?,
  3. double? width,
  4. DateTime? initialDate,
  5. Locale locale = const Locale('en', 'US'),
})

Implementation

const CMonthNavigator({
  super.key,
  this.onChange,
  this.width,
  this.initialDate,
  this.locale = const Locale('en', 'US'),
});