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