Skip to content

Instantly share code, notes, and snippets.

@red-star25
Created January 6, 2022 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save red-star25/29ec3636a4bb3282343f5455bf117aca to your computer and use it in GitHub Desktop.
Save red-star25/29ec3636a4bb3282343f5455bf117aca to your computer and use it in GitHub Desktop.
part of 'joke_bloc.dart';
@immutable
abstract class JokeEvent extends Equatable {
const JokeEvent();
}
class LoadJokeEvent extends JokeEvent {
@override
List<Object> get props => [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment