copyWith method

StickerConstraint copyWith({
  1. double? width,
  2. double? height,
})

Implementation

StickerConstraint copyWith({
  double? width,
  double? height,
}) {
  return StickerConstraint(
    width: width ?? this.width,
    height: height ?? this.height,
  );
}