copyWith method

ScreenSettings copyWith({
  1. int? width,
  2. int? height,
})

Implementation

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