copyWith method

RCKThemeIcon copyWith({
  1. String? file,
  2. String? add,
  3. String? audio,
  4. String? camera,
  5. String? chat,
  6. String? close,
  7. String? copy,
  8. String? defaultAvatar,
  9. String? delete,
  10. String? doNotDisturb1,
  11. String? doNotDisturb,
  12. String? document,
  13. String? done,
  14. String? downArrow,
  15. String? download,
  16. String? edit,
  17. String? emoji1,
  18. String? emoji,
  19. String? enterTheKeyboard,
  20. String? error,
  21. String? forwardMerge,
  22. String? forwardSingle,
  23. String? gallery,
  24. String? gift,
  25. String? groupDefaultAvatar,
  26. String? leftArrow,
  27. String? loading,
  28. String? local,
  29. String? member1,
  30. String? member,
  31. String? more,
  32. String? multiSelect,
  33. String? official1,
  34. String? official,
  35. String? pauseOne,
  36. String? pin,
  37. String? play,
  38. String? refresh,
  39. String? reply,
  40. String? rightArrow,
  41. String? search,
  42. String? thumbnailFailed,
  43. String? trumpet,
  44. String? videoPlay,
  45. String? voiceMessage1,
  46. String? voiceMessage,
  47. String? voiceMessageSend,
  48. String? noMessages,
  49. String? attention,
  50. String? allowNotification,
  51. String? unpin,
  52. String? chatItemMultiSelect,
  53. String? chatItemMultiUnselect,
  54. String? filming,
  55. String? playVideoInMore,
  56. String? recall,
  57. 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,
  );
}