characterCount property
int
get
characterCount
Gets the current character count
Implementation
// ignore: unnecessary_getters_setters
int get characterCount => _characterCount;
Sets the current character count. Marked as internal method - this should not be used outside of the package itself.
Implementation
// ignore: unnecessary_getters_setters
@internal
set characterCount(int count) => _characterCount = count;