MatrixTransform.copy constructor

MatrixTransform.copy(
  1. MatrixTransform other
)

Implementation

factory MatrixTransform.copy(MatrixTransform other) => MatrixTransform(
      angle: other.angle,
      offset: other._offset,
      scale: other.scale,
      skew: other.skew,
      position: other.position,
    );