[mob][photos] format

This commit is contained in:
laurenspriem
2024-10-24 19:02:13 +05:30
parent 054a9deb59
commit d2f20140da

View File

@@ -3,7 +3,8 @@ import "package:system_info_plus/system_info_plus.dart";
/// The total amount of RAM in the device in MB
int? deviceTotalRAM;
bool get enoughRamForLocalIndexing => deviceTotalRAM == null || deviceTotalRAM! >= 5 * 1024;
bool get enoughRamForLocalIndexing =>
deviceTotalRAM == null || deviceTotalRAM! >= 5 * 1024;
/// Return the total amount of RAM in the device in MB
Future<int?> checkDeviceTotalRAM() async {