load method

Future<LoadResult<T>> load()

Loads the current save without writing it back.

Implementation

Future<LoadResult<T>> load() async {
  return _load(writeBack: false);
}