read property

int get read

Implementation

int get read => _delegate.read as int? ?? 0;
set read (int newValue)

Implementation

set read(int newValue) {
  _delegate.read = newValue;
}