TagCheck constructor

const TagCheck({
  1. Key? key,
  2. double size = 24,
  3. Color? color,
  4. double strokeWidth = 2,
})

Implementation

const TagCheck({
  super.key,
  this.size = 24,
  this.color,
  this.strokeWidth = 2,
});