copyWith method

StickerPosition copyWith({
  1. double? dx,
  2. double? dy,
})

Implementation

StickerPosition copyWith({
  double? dx,
  double? dy,
}) {
  return StickerPosition(
    dx: dx ?? this.dx,
    dy: dy ?? this.dy,
  );
}