copyWith method
Implementation
ScreenSettings copyWith({
int? width,
int? height,
}) {
return ScreenSettings(
width: width ?? this.width,
height: height ?? this.height,
);
}
ScreenSettings copyWith({
int? width,
int? height,
}) {
return ScreenSettings(
width: width ?? this.width,
height: height ?? this.height,
);
}