AudioListenerWillBeDestroyedEvent.fromJson constructor

AudioListenerWillBeDestroyedEvent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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