Skip to content

Instantly share code, notes, and snippets.

@felangel
Last active January 7, 2019 00:46
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 felangel/658ae44158631791c137cd0f47f712ad to your computer and use it in GitHub Desktop.
Save felangel/658ae44158631791c137cd0f47f712ad to your computer and use it in GitHub Desktop.
[flutter_infinite_list] post_event
import 'package:equatable/equatable.dart';
abstract class PostEvent extends Equatable {}
class Fetch extends PostEvent {
@override
String toString() => 'Fetch';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment