OrderedTip constructor

const OrderedTip({
  1. Key? key,
  2. required String id,
  3. GlobalKey<TipGrouperState>? grouper,
  4. String? title,
  5. String? message,
  6. Widget? content,
  7. int version = 0,
  8. int order = 0,
  9. BoxConstraints boxConstraints = const BoxConstraints(minHeight: 24.0),
  10. Decoration? decoration,
  11. TextStyle textStyle = const TextStyle(),
  12. EdgeInsets padding = const EdgeInsets.all(8.0),
  13. EdgeInsets margin = const EdgeInsets.symmetric(horizontal: 16.0),
  14. double verticalOffset = 24.0,
  15. String closerText = 'OK',
  16. Duration waitDuration = const Duration(milliseconds: 300),
  17. bool excludeFromSemantics = false,
  18. bool preferBelow = true,
  19. required Widget child,
})

Implementation

const OrderedTip({
  Key? key,
  required this.id,
  this.grouper,
  this.title,
  this.message,
  this.content,
  this.version = 0,
  this.order = 0,
  this.boxConstraints = const BoxConstraints(minHeight: 24.0),
  this.decoration,
  this.textStyle = const TextStyle(),
  this.padding = const EdgeInsets.all(8.0),
  this.margin = const EdgeInsets.symmetric(horizontal: 16.0),
  this.verticalOffset = 24.0,
  this.closerText = 'OK',
  this.waitDuration = const Duration(milliseconds: 300),
  this.excludeFromSemantics = false,
  this.preferBelow = true,
  required this.child,
}) : super(key: key);