UIButtonThemeData constructor

const UIButtonThemeData({
  1. double? height,
  2. double? spacing,
  3. Color? backgroundColor,
  4. Color? foregroundColor,
  5. TextStyle? textStyle,
  6. BorderRadius? borderRadius,
  7. EdgeInsets? padding,
  8. UIIconThemeData? leftSuffixIcon,
  9. UIIconThemeData? rightSuffixIcon,
  10. BoxBorder? border,
  11. String? fontFamily,
})

Implementation

const UIButtonThemeData({
  this.height,
  this.spacing,
  this.backgroundColor,
  this.foregroundColor,
  this.textStyle,
  this.borderRadius,
  this.padding,
  this.leftSuffixIcon,
  this.rightSuffixIcon,
  this.border,
  this.fontFamily,
});