RRulePickerDropdownThemeData constructor

const RRulePickerDropdownThemeData({
  1. bool? showUnderline,
  2. TextStyle? style,
  3. BoxDecoration? decoration,
  4. TextStyle? menuItemStyle,
  5. BoxDecoration? menuItemDecoration,
})

Creates a new RRulePickerDropdownThemeData with the provided styling options.

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

Implementation

const RRulePickerDropdownThemeData({
  this.showUnderline,
  this.style,
  this.decoration,
  this.menuItemStyle,
  this.menuItemDecoration,
});