Skip to content

Instantly share code, notes, and snippets.

@soonsam123
Created December 18, 2019 18:04
Show Gist options
  • Save soonsam123/a2c475d4f3eb3be56d42df875afbd1ee to your computer and use it in GitHub Desktop.
Save soonsam123/a2c475d4f3eb3be56d42df875afbd1ee to your computer and use it in GitHub Desktop.
import 'package:equatable/equatable.dart';
abstract class UsersEvent extends Equatable {
@override
List<Object> get props => [];
}
class FetchUsers extends UsersEvent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment