LaunchStyle constructor

const LaunchStyle({
  1. Color? backgroundColor,
  2. Color? textColor,
  3. Color? iconColor,
  4. double? borderRadius,
  5. EdgeInsetsGeometry? padding,
  6. double? fontSize,
  7. FontWeight? fontWeight,
  8. double? height,
  9. double? iconWidth,
  10. double? iconHeight,
  11. BoxFit? iconFit,
  12. bool isOutlined = false,
  13. double? borderWidth,
  14. Color? borderColor,
})

Creates a LaunchStyle with customizable properties.

Implementation

const LaunchStyle({
  this.backgroundColor,
  this.textColor,
  this.iconColor,
  this.borderRadius,
  this.padding,
  this.fontSize,
  this.fontWeight,
  this.height,
  this.iconWidth,
  this.iconHeight,
  this.iconFit,
  this.isOutlined = false,
  this.borderWidth,
  this.borderColor,
});