Created
December 8, 2019 21:49
-
-
Save shyvum/53ed7ef36b745856ec39fa2411fbfa65 to your computer and use it in GitHub Desktop.
This file contains 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
const RefreshIndicator({ | |
Key key, | |
@required this.child, | |
this.displacement = 40.0, | |
@required this.onRefresh, | |
this.color, | |
this.backgroundColor, | |
this.notificationPredicate = defaultScrollNotificationPredicate, | |
this.semanticsLabel, | |
this.semanticsValue, | |
}) : assert(child != null), | |
assert(onRefresh != null), | |
assert(notificationPredicate != null), | |
super(key: key); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment