ButtonStyleConfiguration constructor

const ButtonStyleConfiguration({
  1. double? height,
  2. double? width,
  3. BoxDecoration? decoration,
  4. String? buttonText,
  5. TextStyle? buttonTextStyle,
  6. Widget? child,
  7. Alignment? alignment,
})

Implementation

const ButtonStyleConfiguration({
  this.height,
  this.width,
  this.decoration,
  this.buttonText,
  this.buttonTextStyle,
  this.child,
  this.alignment,
});