copyWith method
Creates a copy of this object, but with the given fields replaced with the new values.
Implementation
LinuxServerCapabilities copyWith({
Set<String>? otherCapabilities,
bool? body,
bool? bodyHyperlinks,
bool? bodyImages,
bool? bodyMarkup,
bool? iconMulti,
bool? iconStatic,
bool? persistence,
bool? sound,
bool? actions,
bool? actionIcons,
}) =>
LinuxServerCapabilities(
otherCapabilities: otherCapabilities ?? this.otherCapabilities,
body: body ?? this.body,
bodyHyperlinks: bodyHyperlinks ?? this.bodyHyperlinks,
bodyImages: bodyImages ?? this.bodyImages,
bodyMarkup: bodyMarkup ?? this.bodyMarkup,
iconMulti: iconMulti ?? this.iconMulti,
iconStatic: iconStatic ?? this.iconStatic,
persistence: persistence ?? this.persistence,
sound: sound ?? this.sound,
actions: actions ?? this.actions,
actionIcons: actionIcons ?? this.actionIcons,
);