33 lines
664 B
Dart
33 lines
664 B
Dart
part of 'account_bloc.dart';
|
|
|
|
sealed class AccountEvent extends Equatable {
|
|
const AccountEvent();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
final class AccountImportCSV extends AccountEvent {
|
|
const AccountImportCSV();
|
|
}
|
|
|
|
final class AccountImportJSON extends AccountEvent {
|
|
const AccountImportJSON();
|
|
}
|
|
|
|
final class AccountExportJSON extends AccountEvent {
|
|
const AccountExportJSON();
|
|
}
|
|
|
|
final class AccountExportCSV extends AccountEvent {
|
|
const AccountExportCSV();
|
|
}
|
|
|
|
final class AccountLoad extends AccountEvent {
|
|
final List<Account> subAccounts;
|
|
const AccountLoad(this.subAccounts);
|
|
|
|
@override
|
|
List<Object> get props => [subAccounts];
|
|
}
|