initial commit (migrated)
This commit is contained in:
commit
b594facb51
143 changed files with 11057 additions and 0 deletions
21
lib/features/quote/presentation/bloc/quote_events.dart
Normal file
21
lib/features/quote/presentation/bloc/quote_events.dart
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
part of 'quote_bloc.dart';
|
||||
|
||||
abstract class QuoteEvent extends Equatable {
|
||||
const QuoteEvent();
|
||||
}
|
||||
|
||||
class GetQuoteEvent extends QuoteEvent {
|
||||
const GetQuoteEvent();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class GetTranslatedQuoteEvent extends QuoteEvent {
|
||||
final TranslationTarget translationTarget;
|
||||
|
||||
const GetTranslatedQuoteEvent(this.translationTarget);
|
||||
|
||||
@override
|
||||
List<Object> get props => [translationTarget];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue