Guest User

Untitled

a guest
Jan 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import 'package:equatable/equatable.dart';
  2.  
  3. abstract class GithubSearchEvent extends Equatable {
  4. GithubSearchEvent([List props = const []]) : super(props);
  5. }
  6.  
  7. class TextChanged extends GithubSearchEvent {
  8. final String text;
  9.  
  10. TextChanged({this.text}) : super([text]);
  11.  
  12. @override
  13. String toString() => 'TextChanged { text: $text }';
  14. }
Add Comment
Please, Sign In to add comment