TextRenderer constructor

const TextRenderer({
  1. Key? key,
  2. required Widget child,
  3. String? text,
  4. TextRendererStyle? style,
})

Default TextRenderer const constructor.

Implementation

const TextRenderer({
  Key? key,
  required this.child,
  this.text,
  this.style,
}) : super(key: key);