AudioListenerWillBeDestroyedEvent.fromJson constructor
Implementation
factory AudioListenerWillBeDestroyedEvent.fromJson(
    Map<String, dynamic> json) {
  return AudioListenerWillBeDestroyedEvent(
    contextId: GraphObjectId.fromJson(json['contextId'] as String),
    listenerId: GraphObjectId.fromJson(json['listenerId'] as String),
  );
}