copyWith method
RCKThemeIcon
copyWith({
- String? file,
- String? add,
- String? audio,
- String? camera,
- String? chat,
- String? close,
- String? copy,
- String? defaultAvatar,
- String? delete,
- String? doNotDisturb1,
- String? doNotDisturb,
- String? document,
- String? done,
- String? downArrow,
- String? download,
- String? edit,
- String? emoji1,
- String? emoji,
- String? enterTheKeyboard,
- String? error,
- String? forwardMerge,
- String? forwardSingle,
- String? gallery,
- String? gift,
- String? groupDefaultAvatar,
- String? leftArrow,
- String? loading,
- String? local,
- String? member1,
- String? member,
- String? more,
- String? multiSelect,
- String? official1,
- String? official,
- String? pauseOne,
- String? pin,
- String? play,
- String? refresh,
- String? reply,
- String? rightArrow,
- String? search,
- String? thumbnailFailed,
- String? trumpet,
- String? videoPlay,
- String? voiceMessage1,
- String? voiceMessage,
- String? voiceMessageSend,
- String? noMessages,
- String? attention,
- String? allowNotification,
- String? unpin,
- String? chatItemMultiSelect,
- String? chatItemMultiUnselect,
- String? filming,
- String? playVideoInMore,
- String? recall,
- String? speechToText,
Implementation
RCKThemeIcon copyWith({
String? file,
String? add,
String? audio,
String? camera,
String? chat,
String? close,
String? copy,
String? defaultAvatar,
String? delete,
String? doNotDisturb1,
String? doNotDisturb,
String? document,
String? done,
String? downArrow,
String? download,
String? edit,
String? emoji1,
String? emoji,
String? enterTheKeyboard,
String? error,
String? forwardMerge,
String? forwardSingle,
String? gallery,
String? gift,
String? groupDefaultAvatar,
String? leftArrow,
String? loading,
String? local,
String? member1,
String? member,
String? more,
String? multiSelect,
String? official1,
String? official,
String? pauseOne,
String? pin,
String? play,
String? refresh,
String? reply,
String? rightArrow,
String? search,
String? thumbnailFailed,
String? trumpet,
String? videoPlay,
String? voiceMessage1,
String? voiceMessage,
String? voiceMessageSend,
String? noMessages,
String? attention,
String? allowNotification,
String? unpin,
String? chatItemMultiSelect,
String? chatItemMultiUnselect,
String? filming,
String? playVideoInMore,
String? recall,
String? speechToText,
}) {
return RCKThemeIcon(
file: file ?? this.file,
add: add ?? this.add,
audio: audio ?? this.audio,
camera: camera ?? this.camera,
chat: chat ?? this.chat,
close: close ?? this.close,
copy: copy ?? this.copy,
defaultAvatar: defaultAvatar ?? this.defaultAvatar,
delete: delete ?? this.delete,
doNotDisturb1: doNotDisturb1 ?? this.doNotDisturb1,
doNotDisturb: doNotDisturb ?? this.doNotDisturb,
document: document ?? this.document,
done: done ?? this.done,
downArrow: downArrow ?? this.downArrow,
download: download ?? this.download,
edit: edit ?? this.edit,
emoji1: emoji1 ?? this.emoji1,
emoji: emoji ?? this.emoji,
enterTheKeyboard: enterTheKeyboard ?? this.enterTheKeyboard,
error: error ?? this.error,
forwardMerge: forwardMerge ?? this.forwardMerge,
forwardSingle: forwardSingle ?? this.forwardSingle,
gallery: gallery ?? this.gallery,
gift: gift ?? this.gift,
groupDefaultAvatar: groupDefaultAvatar ?? this.groupDefaultAvatar,
leftArrow: leftArrow ?? this.leftArrow,
loading: loading ?? this.loading,
local: local ?? this.local,
member1: member1 ?? this.member1,
member: member ?? this.member,
more: more ?? this.more,
multiSelect: multiSelect ?? this.multiSelect,
official1: official1 ?? this.official1,
official: official ?? this.official,
pauseOne: pauseOne ?? this.pauseOne,
pin: pin ?? this.pin,
play: play ?? this.play,
refresh: refresh ?? this.refresh,
reply: reply ?? this.reply,
rightArrow: rightArrow ?? this.rightArrow,
search: search ?? this.search,
thumbnailFailed: thumbnailFailed ?? this.thumbnailFailed,
trumpet: trumpet ?? this.trumpet,
videoPlay: videoPlay ?? this.videoPlay,
voiceMessage1: voiceMessage1 ?? this.voiceMessage1,
voiceMessage: voiceMessage ?? this.voiceMessage,
voiceMessageSend: voiceMessageSend ?? this.voiceMessageSend,
noMessages: noMessages ?? this.noMessages,
attention: attention ?? this.attention,
allowNotification: allowNotification ?? this.allowNotification,
unpin: unpin ?? this.unpin,
chatItemMultiSelect: chatItemMultiSelect ?? this.chatItemMultiSelect,
chatItemMultiUnselect:
chatItemMultiUnselect ?? this.chatItemMultiUnselect,
filming: filming ?? this.filming,
playVideoInMore: playVideoInMore ?? this.playVideoInMore,
recall: recall ?? this.recall,
speechToText: speechToText ?? this.speechToText,
);
}