fix(mobile): correct maximumSizeBytes setter to use maximumSizeBytes property (#27098)

fix: correct maximumSizeBytes setter to use maximumSizeBytes property
This commit is contained in:
Luis Nachtigall 2026-03-20 17:22:59 +01:00 committed by GitHub
parent f3e4bcc733
commit 644f705be1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ final class CustomImageCache implements ImageCache {
set maximumSize(int value) => _small.maximumSize = value;
@override
set maximumSizeBytes(int value) => _small.maximumSize = value;
set maximumSizeBytes(int value) => _small.maximumSizeBytes = value;
@override
void clear() {