toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'nodeId': nodeId.toJson(),
    'contextId': contextId.toJson(),
    'nodeType': nodeType.toJson(),
    'numberOfInputs': numberOfInputs,
    'numberOfOutputs': numberOfOutputs,
    'channelCount': channelCount,
    'channelCountMode': channelCountMode.toJson(),
    'channelInterpretation': channelInterpretation.toJson(),
  };
}