RRulePickerThemeData constructor

const RRulePickerThemeData({
  1. TextStyle? labelStyle,
  2. EdgeInsetsGeometry? padding,
  3. RRulePickerHeaderThemeData? headerTheme,
  4. RRulePickerDropdownThemeData? dropdownTheme,
  5. RRulePickerDropdownThemeData? topDropdownTheme,
  6. RRulePickerTextFieldThemeData? textFieldTheme,
  7. ButtonStyle? segmentedButtonStyle,
  8. ButtonStyle? splitSegmentedButtonStyle,
})

Creates a new RRulePickerThemeData with the provided styling options.

All parameters are optional and can be null, in which case default values will be used.

Implementation

const RRulePickerThemeData({
  this.labelStyle,
  this.padding,
  this.headerTheme,
  this.dropdownTheme,
  this.topDropdownTheme,
  this.textFieldTheme,
  this.segmentedButtonStyle,
  this.splitSegmentedButtonStyle,
});