characterCount property

int characterCount

Gets the current character count

Implementation

// ignore: unnecessary_getters_setters
int get characterCount => _characterCount;
  1. @internal
void characterCount=(int count)

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;