We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@OverRide void install() { assert(!_transitionCompleter.isCompleted, 'Cannot install a $runtimeType after disposing it.'); _controller = createAnimationController(); assert(_controller != null, '$runtimeType.createAnimationController() returned null.'); _filterBlurAnimation = createBlurFilterAnimation(); _filterColorAnimation = createColorFilterAnimation(); _animation = createAnimation(); assert(_animation != null, '$runtimeType.createAnimation() returned null.'); super.install(); } 文件 flushbar_route.dart 1.10没参数,编译报错,查看1.9.1的文件里是有参数的!
The text was updated successfully, but these errors were encountered:
Please, read the changelog.
Sorry, something went wrong.
try flushbar: 1.6.0 It workes for me. Also, check the changelogs for the compatible version for you.
flushbar: 1.6.0
No branches or pull requests
@OverRide
void install() {
assert(!_transitionCompleter.isCompleted, 'Cannot install a $runtimeType after disposing it.');
_controller = createAnimationController();
assert(_controller != null, '$runtimeType.createAnimationController() returned null.');
_filterBlurAnimation = createBlurFilterAnimation();
_filterColorAnimation = createColorFilterAnimation();
_animation = createAnimation();
assert(_animation != null, '$runtimeType.createAnimation() returned null.');
super.install();
}
文件 flushbar_route.dart
1.10没参数,编译报错,查看1.9.1的文件里是有参数的!
The text was updated successfully, but these errors were encountered: