copyWith method

GetSuggestedStickerSetName copyWith({
  1. String? title,
})

Implementation

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