length property

int get length

Get buffer length (width * height).

Implementation

int get length {
  _checkValid();
  return _width * _height;
}