readSync method
GeneralLib
Implementation
@override
String readSync() {
{
final result = _storage.getItem(pathToFile);
if (result is String) {
if (result.isEmpty) {
return "{}";
}
return result;
}
}
return "";
}