dispose method

void dispose()

会移除当前广播系统实例中的所有的数据。

All data in the current broadcast system instance will be removed.

Implementation

void dispose() {
  if (_type == "extra" && _key != null) {
    _broadcastMap.remove(_key);
  }
}