FlutterTagPositioned constructor

const FlutterTagPositioned({
  1. Key? key,
  2. FlutterTagPosition? position,
  3. required Widget child,
})

Creates a FlutterTagPositioned widget.

key is used to identify this widget in the widget tree. position determines the badge's position relative to its parent. child is the widget to be positioned according to the position.

Implementation

const FlutterTagPositioned({
  super.key,
  this.position,
  required this.child,
});