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