FlutterTagStyle constructor

const FlutterTagStyle({
  1. FlutterTagShape shape = FlutterTagShape.circle,
  2. SharpBorderRadius borderRadius = SharpBorderRadius.zero,
  3. Color tagColor = Colors.red,
  4. BorderSide borderSide = BorderSide.none,
  5. double elevation = 2,
  6. FlutterTagGradient? tagGradient,
  7. FlutterTagGradient? borderGradient,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(5.0),
})

Implementation

const FlutterTagStyle({
  this.shape = FlutterTagShape.circle,
  this.borderRadius = SharpBorderRadius.zero,
  this.tagColor = Colors.red,
  this.borderSide = BorderSide.none,
  this.elevation = 2,
  this.tagGradient,
  this.borderGradient,
  this.padding = const EdgeInsets.all(5.0),
}) : super();