Skip to content

Instantly share code, notes, and snippets.

@soonsam123
Created September 22, 2019 18:02
Show Gist options
  • Save soonsam123/01bb0c8ea419d505c16fac7b5103a78b to your computer and use it in GitHub Desktop.
Save soonsam123/01bb0c8ea419d505c16fac7b5103a78b to your computer and use it in GitHub Desktop.
import 'package:equatable/equatable.dart';
abstract class UsersEvent extends Equatable {
UsersEvent([List props = const []]) : super(props);
}
class FetchUsers extends UsersEvent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment