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