-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
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
Upgrade SDK, Firebase, null_safety #32
Conversation
lib/src/firebase_image.dart
Outdated
FirebaseImage( | ||
String location, { | ||
this.shouldCache = true, | ||
this.scale = 1.0, | ||
this.maxSizeBytes = 2500 * 1000, // 2.5MB | ||
this.cacheRefreshStrategy = CacheRefreshStrategy.BY_METADATA_DATE, | ||
this.firebaseApp, | ||
required this.firebaseApp, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This breaking change should be documented in the change log and/or readme.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this breaking change necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. firebaseApp is no longer required.
The top-level |
Actually, I think PR #30 is slightly better because it leverages the |
680fab2
to
0c6b87d
Compare
Upgraded dependencies to SDK >=2.12.0 and Firebase_core ^1.0.0 along with required transitive dependencies. Works with SDK 2.13.0-77.0.dev
Using the late keyword is better. Changed it. Sorry for not spotting this in an earlier PR. |
Just merged PR #30. Thanks for your help though! |
NP 👍
…On Tue, 9 Mar 2021 at 15:43, Matt Reid ***@***.***> wrote:
Just merged PR #30 <#30>.
Thanks for your help though!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#32 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABKUWOTMXGGAJFFVCLMAVTTCYXZNANCNFSM4YX2KAVQ>
.
|
Upgraded dependencies to SDK >=2.12.0 and Firebase_core ^1.0.0 along with required transitive dependencies. Works with SDK 2.13.0-77.0.dev