width property

  1. @override
int get width
override

Implementation

@override get width {
  structOnOp((p) => _width = p.ref.width);
  return _width;
}
  1. @override
set width (int value)
override

Implementation

@override set width(int value) {
  _width = value;
  structOnOp((p) => p.ref.width = value);
}