YearHeaderCustomizer constructor

YearHeaderCustomizer({
  1. TextStyle? titleTextStyle,
  2. double height = 40,
  3. double? width,
  4. IconData downIcon = Icons.arrow_drop_down_outlined,
  5. IconData upIcon = Icons.arrow_drop_up_outlined,
})

Implementation

YearHeaderCustomizer({
  this.titleTextStyle,
  this.height = 40,
  this.width,
  this.downIcon = Icons.arrow_drop_down_outlined,
  this.upIcon = Icons.arrow_drop_up_outlined,
});