toText method
Implementation
Text toText({
TextStyle? style,
TextAlign? textAlign,
int? maxLines,
TextOverflow? overflow,
}) => Text(
this ?? '',
style: style,
textAlign: textAlign,
maxLines: maxLines,
overflow: overflow,
);
Text toText({
TextStyle? style,
TextAlign? textAlign,
int? maxLines,
TextOverflow? overflow,
}) => Text(
this ?? '',
style: style,
textAlign: textAlign,
maxLines: maxLines,
overflow: overflow,
);