FBadgeContentStyle constructor

FBadgeContentStyle({
  1. required TextStyle labelTextStyle,
  2. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 2),
})

Creates a FBadgeContentStyle.

Implementation

FBadgeContentStyle({
  required this.labelTextStyle,
  this.padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 2),
});