updateRunLocation method Null safety

Future<void> updateRunLocation(
  1. RunLocation _runLocation
)

Update the current run location

Implementation

Future<void> updateRunLocation(RunLocation _runLocation) async {
  runLocation(_runLocation);
  await syncController.upsert(_runLocation);
}