PositionItemView constructor

PositionItemView({
  1. required String text,
  2. double fontSize = 16,
  3. Color color = Colors.white,
  4. double y = 0,
  5. bool border = true,
  6. bool isTop = true,
  7. dynamic onComplete(
    1. String
    )?,
  8. dynamic onCreated(
    1. AnimationController
    )?,
  9. required UniqueKey key,
})

Implementation

PositionItemView({
  required this.text,
  this.fontSize = 16,
  this.color = Colors.white,
  this.y = 0,
  this.border = true,
  this.isTop = true,
  this.onComplete,
  this.onCreated,
  required UniqueKey key,
}) : super(key: key);