AudioParamWillBeDestroyedEvent.fromJson constructor

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

Implementation

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