data property

  1. @override
String? data
override

The text to display.

This will be null if a textSpan is provided instead.

Implementation

@override
String? get data => super.data == null ? null : Characters(super.data!).toList().join("\u{200B}");