copyWith method
CanvasModel
copyWith({
- int? width,
- int? height,
- BackgroundModel? background,
- String? backgroundImage,
Implementation
CanvasModel copyWith({
int? width,
int? height,
BackgroundModel? background,
String? backgroundImage,
}) {
return CanvasModel(
width: width ?? this.width,
height: height ?? this.height,
background: background ?? this.background,
backgroundImage: backgroundImage ?? this.backgroundImage,
);
}