size property Null safety
Implementation
int get size => _content != null
? _content.length as int
: _rawContent != null
? _rawContent!.length
: 0;
int get size => _content != null
? _content.length as int
: _rawContent != null
? _rawContent!.length
: 0;