copyWith method
Creates a copy with the given fields replaced.
Implementation
HelpModel copyWith({int? width, bool? showAll, HelpStyles? styles}) {
return HelpModel(
width: width ?? this.width,
showAll: showAll ?? this.showAll,
styles: styles ?? this.styles,
);
}