moxxy/lib/ui/bloc/sticker_pack_state.dart

11 lines
255 B
Dart

part of 'sticker_pack_bloc.dart';
@freezed
class StickerPackState with _$StickerPackState {
factory StickerPackState({
StickerPack? stickerPack,
@Default(false) bool isWorking,
@Default(false) bool isInstalling,
}) = _StickerPackState;
}