stringFooter property
String?
get
stringFooter
Implementation
String? get stringFooter {
final footer = this.footer;
if (footer == null) return null;
try {
return utf8.decode(footer);
} catch (e) {
return String.fromCharCodes(footer);
}
}