remove<T> method

T? remove<T>(
  1. TypedKey<T> key
)

手动移除指定的key

Implementation

T? remove<T>(TypedKey<T> key) => _data.remove(key) as T?;