activeMutationsForKey static method

int activeMutationsForKey(
  1. String mutationKey
)

Returns the number of currently running mutations with the given mutationKey.

Implementation

static int activeMutationsForKey(String mutationKey) =>
    _activeByKey[mutationKey] ?? 0;