updateCompletion method Null safety

Future<void> updateCompletion(
  1. DateTime completion
)

Time of completion

Implementation

Future<void> updateCompletion(DateTime completion) async {
  _completion = completion;
  completion$(completion);
  await storage.set(completion.toString());
}