size property

CustomPoint<num>? size

Implementation

CustomPoint? get size => _size;
void size=(CustomPoint<num>? s)

Implementation

set size(CustomPoint? s) {
  _size = s;
  if (!_initialized) {
    _init();
    _initialized = true;
  }
  _pixelOrigin = getNewPixelOrigin(_lastCenter);
}