copy method

  1. @override
void copy(
  1. covariant Core<CoreContext> source
)
inherited

Copies property values, currently doesn't trigger change callbacks. It's meant to be a helper for clone.

Implementation

@override
void copy(Core source) {
  super.copy(source);
  if (source is DrawableAssetBase) {
    _height = source._height;
    _width = source._width;
  }
}