Bookmark constructor

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

Implementation

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