BadgeThemeData constructor

const BadgeThemeData(
  1. {Color? backgroundColor,
  2. Color? textColor,
  3. double? smallSize,
  4. double? largeSize,
  5. TextStyle? textStyle,
  6. EdgeInsetsGeometry? padding,
  7. AlignmentGeometry? alignment,
  8. Offset? offset}
)

Creates the set of color, style, and size properties used to configure Badge.

Implementation

const BadgeThemeData({
  this.backgroundColor,
  this.textColor,
  this.smallSize,
  this.largeSize,
  this.textStyle,
  this.padding,
  this.alignment,
  this.offset,
});