reloadValue method

Future<Object?> reloadValue()

You should reload the value from the cloud. If you want to skip this step, simply don't provide this method.

Object? reloadValue() => loadTodoList();

Implementation

Future<Object?> reloadValue() {
  throw UnimplementedError();
}