Transform2D.copy constructor
Transform2D.copy(
- Transform2D other
Implementation
factory Transform2D.copy(Transform2D other) => Transform2D()
..angle = other.angle
..position = other.position
..scale = other.scale
..offset = other.offset;