width property

  1. @override
int get width
override

Implementation

@override get width {
  structOnOp((p) => _width = p.readerAt(_o[.width]).Int32());
  return _width;
}
  1. @override
set width (int value)
override

Implementation

@override set width(int value) {
  _width = value;
  structOnOp((p) => p.writerAt(_o[.width]).Int32(value));
}