size property

int size

Implementation

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