Text constructor

Text(
  1. String? data
)

Implementation

Text(String? data)
    : _data = data ?? '',
      super._();