ButtonStyleData constructor

const ButtonStyleData({
  1. double? height,
  2. double? width,
  3. EdgeInsetsGeometry? padding,
  4. BoxDecoration? decoration,
  5. int? elevation,
  6. MaterialStateProperty<Color?>? overlayColor,
})

Creates a ButtonStyleData.

Implementation

const ButtonStyleData({
  this.height,
  this.width,
  this.padding,
  this.decoration,
  this.elevation,
  this.overlayColor,
});