RectangleButton constructor

const RectangleButton({
  1. Key? key,
  2. bool selected = false,
  3. void onPressed()?,
  4. String? label,
  5. Widget? child,
  6. Color? trailingColor,
  7. bool radio = false,
  8. bool toggleable = false,
})

Implementation

const RectangleButton({
  super.key,
  this.selected = false,
  this.onPressed,
  this.label,
  this.child,
  this.trailingColor,
  this.radio = false,
  this.toggleable = false,
});