copyWith method

ScreenLookAndFeelLayer copyWith({
  1. String? width,
  2. String? height,
})

Implementation

ScreenLookAndFeelLayer copyWith({String? width, String? height}) {
  return ScreenLookAndFeelLayer(
    width: width ?? this.width,
    height: height ?? this.height,
  );
}