13 lines
213 B
Dart
13 lines
213 B
Dart
part of 'account_bloc.dart';
|
|
|
|
final class AccountState extends Equatable {
|
|
const AccountState();
|
|
|
|
AccountState copyWith() {
|
|
return const AccountState();
|
|
}
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|