CustomizedText constructor

const CustomizedText({
  1. Key? key,
  2. required Map linha,
})

Creates a CustomizedText widget.

The linha parameter contains the text content and customization options.

Implementation

const CustomizedText({
  super.key,
  required this.linha,
});