copyWith method

GetInstalledStickerSets copyWith({
  1. bool? isMasks,
})

Implementation

GetInstalledStickerSets copyWith({
  bool? isMasks,
}) => GetInstalledStickerSets(
  isMasks: isMasks ?? this.isMasks,
);