text property

String get text

The value in content Base-64 decoded.

Implementation

String get text {
  return _text ??= utf8.decode(
    base64Decode(LineSplitter.split(content!).join()),
  );
}