TermosTapTarget constructor

const TermosTapTarget({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onTap,
  4. BorderRadius? borderRadius,
  5. bool enabled = true,
  6. DotGridController? controller,
  7. Color? primaryColor,
  8. double? blobRadius,
  9. Color? idleMeshColor,
  10. double? dotSize,
  11. double? gridSpacing,
  12. bool shrinkWrapWidth = false,
})

Implementation

const TermosTapTarget({
  super.key,
  required this.child,
  this.onTap,
  this.borderRadius,
  this.enabled = true,
  this.controller,
  this.primaryColor,
  this.blobRadius,
  this.idleMeshColor,
  this.dotSize,
  this.gridSpacing,
  this.shrinkWrapWidth = false,
});