Created
April 26, 2020 14:28
-
-
Save IhwanID/b97f8bd01efaf05270b7381a8f782f0f to your computer and use it in GitHub Desktop.
event in bloc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:equatable/equatable.dart'; | |
| abstract class CompanyEvent extends Equatable { | |
| const CompanyEvent(); | |
| @override | |
| List<Object> get props => []; | |
| } | |
| class FetchCompanies extends CompanyEvent {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment