HintWidget constructor

const HintWidget({
  1. Key? key,
  2. required Widget builder(
    1. Animation<double> animation
    ),
  3. Future<void> onTap()?,
  4. String? heroTag,
  5. int maxWidth = 85,
  6. bool startOpen = false,
  7. Color? backgroundColor,
  8. Color? borderColor,
  9. Color? color,
})

Implementation

const HintWidget({
  Key? key,
  required this.builder,
  this.onTap,
  this.heroTag,
  this.maxWidth = 85,
  this.startOpen = false,
  this.backgroundColor,
  this.borderColor,
  this.color,
}) : super(key: key);