GrockInfoWidget constructor

const GrockInfoWidget({
  1. Key? key,
  2. required Widget child,
  3. String? message,
  4. InlineSpan? richMessage,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. double? verticalOffset,
  9. bool? preferBelow,
  10. bool? excludeFromSemantics,
  11. Decoration? decoration,
  12. TextStyle? textStyle,
  13. TextAlign? textAlign,
  14. Duration? waitDuration,
  15. Duration? showDuration,
})

Implementation

const GrockInfoWidget({
  Key? key,
  required this.child,
  this.message,
  this.richMessage,
  this.height,
  this.padding,
  this.margin,
  this.verticalOffset,
  this.preferBelow,
  this.excludeFromSemantics,
  this.decoration,
  this.textStyle,
  this.textAlign,
  this.waitDuration,
  this.showDuration,
}) : super(key: key);