content property Null safety
Get the content of the file, decompressing on demand as necessary.
Implementation
dynamic get content {
if (_content == null) {
decompress();
}
return _content;
}
Get the content of the file, decompressing on demand as necessary.
dynamic get content {
if (_content == null) {
decompress();
}
return _content;
}