copyWith method

PlassLabels copyWith({
  1. String? close,
  2. String? cancel,
  3. String? confirm,
  4. String? acknowledge,
  5. String? search,
  6. String? selectAll,
  7. String? selectRow,
  8. String? sortedAscending,
  9. String? sortedDescending,
  10. String? remove,
  11. String? dismiss,
  12. String? open,
  13. String? previous,
  14. String? next,
  15. String? reveal,
  16. String? hide,
  17. String? increase,
  18. String? decrease,
  19. String? preview,
  20. String? empty,
  21. String? optional,
  22. String? breadcrumb,
  23. String? breadcrumbExpand,
  24. String? carousel,
  25. String? carouselPrevious,
  26. String? carouselNext,
  27. String? commandPalette,
  28. String? commandPalettePlaceholder,
  29. String? gallery,
  30. String? chart,
  31. String? minimize,
  32. String? maximize,
  33. String? restore,
  34. String? resizeWindow,
  35. String? overlay,
  36. String? pagination,
  37. String? paginationPrevious,
  38. String? paginationNext,
  39. String? paginationFirst,
  40. String? paginationLast,
  41. String? rating,
  42. String? sidebar,
  43. String? sidebarOpen,
  44. String? sidebarClose,
  45. String? sidebarResize,
  46. String? skipToContent,
  47. String? backToTop,
  48. String? onThisPage,
  49. String? typing,
  50. String? messageSending,
  51. String? messageSent,
  52. String? messageDelivered,
  53. String? messageRead,
  54. String? messageFailed,
  55. String? spoilerWarning,
  56. String? filePickerTitle,
  57. String? newTab,
  58. String? transferAvailable,
  59. String? transferSelected,
  60. String? transferToSelected,
  61. String? transferToAvailable,
  62. String? copy,
  63. String? copied,
  64. String? copyFailed,
  65. String? raw,
  66. String? code,
  67. String? previousMonth,
  68. String? nextMonth,
  69. String? previousYear,
  70. String? nextYear,
  71. String? previousYears,
  72. String? nextYears,
  73. String? chooseMonth,
  74. String? chooseYear,
  75. String? today,
  76. String? thisMonth,
  77. String? thisYear,
  78. String? now,
  79. String? clear,
  80. String? done,
  81. String? skip,
  82. String? hour,
  83. String? minute,
  84. String? second,
  85. String? meridiem,
  86. String? start,
  87. String? end,
  88. String paginationPage(
    1. int page
    )?,
  89. String ratingValue(
    1. num value,
    2. int count
    )?,
  90. String? ratingNone,
  91. String carouselSlide(
    1. int index,
    2. int count
    )?,
  92. String galleryItem(
    1. int index,
    2. int count
    )?,
  93. String removeItem(
    1. String name
    )?,
  94. String addCustom(
    1. String name
    )?,
  95. String howToStep(
    1. int index,
    2. int count
    )?,
  96. String transferMoved(
    1. int count,
    2. String list
    )?,
})

This set with a word or two replaced.

What a pack is for: ko.copyWith(start: '체크인') keeps the translation and changes the one line this screen says differently.

Implementation

PlassLabels copyWith({
  String? close,
  String? cancel,
  String? confirm,
  String? acknowledge,
  String? search,
  String? selectAll,
  String? selectRow,
  String? sortedAscending,
  String? sortedDescending,
  String? remove,
  String? dismiss,
  String? open,
  String? previous,
  String? next,
  String? reveal,
  String? hide,
  String? increase,
  String? decrease,
  String? preview,
  String? empty,
  String? optional,
  String? breadcrumb,
  String? breadcrumbExpand,
  String? carousel,
  String? carouselPrevious,
  String? carouselNext,
  String? commandPalette,
  String? commandPalettePlaceholder,
  String? gallery,
  String? chart,
  String? minimize,
  String? maximize,
  String? restore,
  String? resizeWindow,
  String? overlay,
  String? pagination,
  String? paginationPrevious,
  String? paginationNext,
  String? paginationFirst,
  String? paginationLast,
  String? rating,
  String? sidebar,
  String? sidebarOpen,
  String? sidebarClose,
  String? sidebarResize,
  String? skipToContent,
  String? backToTop,
  String? onThisPage,
  String? typing,
  String? messageSending,
  String? messageSent,
  String? messageDelivered,
  String? messageRead,
  String? messageFailed,
  String? spoilerWarning,
  String? filePickerTitle,
  String? newTab,
  String? transferAvailable,
  String? transferSelected,
  String? transferToSelected,
  String? transferToAvailable,
  String? copy,
  String? copied,
  String? copyFailed,
  String? raw,
  String? code,
  String? previousMonth,
  String? nextMonth,
  String? previousYear,
  String? nextYear,
  String? previousYears,
  String? nextYears,
  String? chooseMonth,
  String? chooseYear,
  String? today,
  String? thisMonth,
  String? thisYear,
  String? now,
  String? clear,
  String? done,
  String? skip,
  String? hour,
  String? minute,
  String? second,
  String? meridiem,
  String? start,
  String? end,
  String Function(int page)? paginationPage,
  String Function(num value, int count)? ratingValue,
  String? ratingNone,
  String Function(int index, int count)? carouselSlide,
  String Function(int index, int total)? galleryItem,
  String Function(String name)? removeItem,
  String Function(String query)? addCustom,
  String Function(int step, int total)? howToStep,
  String Function(int count, String list)? transferMoved,
}) {
  return PlassLabels(
    close: close ?? this.close,
    cancel: cancel ?? this.cancel,
    confirm: confirm ?? this.confirm,
    acknowledge: acknowledge ?? this.acknowledge,
    search: search ?? this.search,
    selectAll: selectAll ?? this.selectAll,
    selectRow: selectRow ?? this.selectRow,
    sortedAscending: sortedAscending ?? this.sortedAscending,
    sortedDescending: sortedDescending ?? this.sortedDescending,
    remove: remove ?? this.remove,
    dismiss: dismiss ?? this.dismiss,
    open: open ?? this.open,
    previous: previous ?? this.previous,
    next: next ?? this.next,
    reveal: reveal ?? this.reveal,
    hide: hide ?? this.hide,
    increase: increase ?? this.increase,
    decrease: decrease ?? this.decrease,
    preview: preview ?? this.preview,
    empty: empty ?? this.empty,
    optional: optional ?? this.optional,
    breadcrumb: breadcrumb ?? this.breadcrumb,
    breadcrumbExpand: breadcrumbExpand ?? this.breadcrumbExpand,
    carousel: carousel ?? this.carousel,
    carouselPrevious: carouselPrevious ?? this.carouselPrevious,
    carouselNext: carouselNext ?? this.carouselNext,
    commandPalette: commandPalette ?? this.commandPalette,
    commandPalettePlaceholder: commandPalettePlaceholder ?? this.commandPalettePlaceholder,
    gallery: gallery ?? this.gallery,
    chart: chart ?? this.chart,
    minimize: minimize ?? this.minimize,
    maximize: maximize ?? this.maximize,
    restore: restore ?? this.restore,
    resizeWindow: resizeWindow ?? this.resizeWindow,
    overlay: overlay ?? this.overlay,
    pagination: pagination ?? this.pagination,
    paginationPrevious: paginationPrevious ?? this.paginationPrevious,
    paginationNext: paginationNext ?? this.paginationNext,
    paginationFirst: paginationFirst ?? this.paginationFirst,
    paginationLast: paginationLast ?? this.paginationLast,
    rating: rating ?? this.rating,
    sidebar: sidebar ?? this.sidebar,
    sidebarOpen: sidebarOpen ?? this.sidebarOpen,
    sidebarClose: sidebarClose ?? this.sidebarClose,
    sidebarResize: sidebarResize ?? this.sidebarResize,
    skipToContent: skipToContent ?? this.skipToContent,
    backToTop: backToTop ?? this.backToTop,
    onThisPage: onThisPage ?? this.onThisPage,
    typing: typing ?? this.typing,
    messageSending: messageSending ?? this.messageSending,
    messageSent: messageSent ?? this.messageSent,
    messageDelivered: messageDelivered ?? this.messageDelivered,
    messageRead: messageRead ?? this.messageRead,
    messageFailed: messageFailed ?? this.messageFailed,
    spoilerWarning: spoilerWarning ?? this.spoilerWarning,
    filePickerTitle: filePickerTitle ?? this.filePickerTitle,
    newTab: newTab ?? this.newTab,
    transferAvailable: transferAvailable ?? this.transferAvailable,
    transferSelected: transferSelected ?? this.transferSelected,
    transferToSelected: transferToSelected ?? this.transferToSelected,
    transferToAvailable: transferToAvailable ?? this.transferToAvailable,
    copy: copy ?? this.copy,
    copied: copied ?? this.copied,
    copyFailed: copyFailed ?? this.copyFailed,
    raw: raw ?? this.raw,
    code: code ?? this.code,
    previousMonth: previousMonth ?? this.previousMonth,
    nextMonth: nextMonth ?? this.nextMonth,
    previousYear: previousYear ?? this.previousYear,
    nextYear: nextYear ?? this.nextYear,
    previousYears: previousYears ?? this.previousYears,
    nextYears: nextYears ?? this.nextYears,
    chooseMonth: chooseMonth ?? this.chooseMonth,
    chooseYear: chooseYear ?? this.chooseYear,
    today: today ?? this.today,
    thisMonth: thisMonth ?? this.thisMonth,
    thisYear: thisYear ?? this.thisYear,
    now: now ?? this.now,
    clear: clear ?? this.clear,
    done: done ?? this.done,
    skip: skip ?? this.skip,
    hour: hour ?? this.hour,
    minute: minute ?? this.minute,
    second: second ?? this.second,
    meridiem: meridiem ?? this.meridiem,
    start: start ?? this.start,
    end: end ?? this.end,
    paginationPage: paginationPage ?? this.paginationPage,
    ratingValue: ratingValue ?? this.ratingValue,
    ratingNone: ratingNone ?? this.ratingNone,
    carouselSlide: carouselSlide ?? this.carouselSlide,
    galleryItem: galleryItem ?? this.galleryItem,
    removeItem: removeItem ?? this.removeItem,
    addCustom: addCustom ?? this.addCustom,
    howToStep: howToStep ?? this.howToStep,
    transferMoved: transferMoved ?? this.transferMoved,
  );
}