saveValue method

Future<void> saveValue(
  1. Object? newValue
)

You should save the value or other related value in the cloud.

void saveValue(newTodoList) => saveTodo(todo);

Implementation

Future<void> saveValue(Object? newValue) {
  throw UnimplementedError();
}