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

fix: correct maximumSizeBytes setter to use maximumSizeBytes property
pull/27063/head
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
1 changed files with 1 additions and 1 deletions

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() {