stringContent property

String get stringContent

Implementation

String get stringContent {
  try {
    return utf8.decode(content);
  } catch (e) {
    return String.fromCharCodes(content);
  }
}