mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-02-23 08:19:49 -05:00
9 lines
237 B
Dart
9 lines
237 B
Dart
![]() |
import 'dart:typed_data';
|
||
|
|
||
|
import 'package:bloc_tools/bloc_tools.dart';
|
||
|
|
||
|
class InvitationGeneratorCubit extends FutureCubit<Uint8List> {
|
||
|
InvitationGeneratorCubit(super.fut);
|
||
|
InvitationGeneratorCubit.value(super.v) : super.value();
|
||
|
}
|