copyWith method

DeleteStickerSet copyWith({
  1. String? name,
})

Implementation

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