copy method Null safety
- covariant DrawableBase source
inherited
Copies property values, currently doesn't trigger change callbacks. It's meant to be a helper for clone.
Implementation
@override
void copy(covariant DrawableBase source) {
super.copy(source);
_blendModeValue = source._blendModeValue;
_drawableFlags = source._drawableFlags;
}