enqueueMutation method
Implementation
@override
Future<void> enqueueMutation(PendingMutation mutation) async {
await _tracked(() async {
await _ensureInitialized();
await _locks.mutations.synchronized(() async {
final mutations = await _loadMutationsUnsafe();
mutations.add(mutation);
await _saveMutationsUnsafe(mutations);
});
});
}