stringContent property

String? get stringContent

Implementation

String? get stringContent {
  final content = this.content;
  try {
    return utf8.decode(content);
  } catch (e) {
    return null;
  }
}