copyWith method

SetStickerSetTitle copyWith({
  1. String? name,
  2. String? title,
})

Implementation

SetStickerSetTitle copyWith({String? name, String? title}) =>
    SetStickerSetTitle(name: name ?? this.name, title: title ?? this.title);