RaisedButtonWidget constructor

const RaisedButtonWidget({
  1. Key? key,
  2. String label = '',
  3. String color = 'primary',
  4. bool disabled = false,
  5. dynamic onPressed()?,
})

Implementation

const RaisedButtonWidget(
    {Key? key,
    this.label = '',
    this.color = 'primary',
    this.disabled = false,
    this.onPressed})
    : super(key: key);