FontSizeTool constructor

FontSizeTool({
  1. Key? key,
  2. required dynamic onFontSizeEdited(
    1. double fontSize,
    2. double letterSpacing,
    3. double letterHeight
    ),
  3. double fontSize = 0,
  4. double letterSpacing = 0,
  5. double letterHeight = 0,
})

Implementation

FontSizeTool({
  super.key,
  required this.onFontSizeEdited,
  this.fontSize = 0,
  this.letterSpacing = 0,
  this.letterHeight = 0,
});