contextKey<T> abstract method

ContextKey<T> contextKey<T>(
  1. String name,
  2. Uint8List explicitId, {
  3. bool isTransferable = false,
})

Generates a ContextKey. Context keys are always unique, even if they have the same name, per spec. The name is used for debugging only.

Implementation

ContextKey<T> contextKey<T>(String name, Uint8List explicitId,
    {bool isTransferable = false});