FlutterTag constructor

const FlutterTag({
  1. Key? key,
  2. Widget? tagContent,
  3. Widget? child,
  4. FlutterTagStyle tagStyle = const FlutterTagStyle(),
  5. FlutterTagAnimation tagAnimation = const FlutterTagAnimation.slide(),
  6. FlutterTagPosition? position,
  7. bool showTag = true,
  8. bool ignorePointer = false,
  9. StackFit stackFit = StackFit.loose,
  10. dynamic onTap()?,
})

Implementation

const FlutterTag({
  super.key,
  this.tagContent,
  this.child,
  this.tagStyle = const FlutterTagStyle(),
  this.tagAnimation = const FlutterTagAnimation.slide(),
  this.position,
  this.showTag = true,
  this.ignorePointer = false,
  this.stackFit = StackFit.loose,
  this.onTap,
});