DebugTextRenderer constructor

DebugTextRenderer({
  1. Color color = const Color(0xFFFFFFFF),
  2. double fontSize = 16.0,
  3. double lineHeight = 1.2,
  4. FontWeight fontWeight = FontWeight.normal,
  5. FontStyle fontStyle = FontStyle.normal,
})

Implementation

DebugTextRenderer({
  this.color = const Color(0xFFFFFFFF),
  this.fontSize = 16.0,
  this.lineHeight = 1.2,
  this.fontWeight = FontWeight.normal,
  this.fontStyle = FontStyle.normal,
});