toOptionsJSON method
Implementation
@override
void toOptionsJSON(StringBuffer buffer) {
super.toOptionsJSON(buffer);
if (frequency != null) {
buffer.writeAll(['"frequency":', frequency?.toJSON(), ','], '');
}
if (resonance != null) {
buffer.writeAll(['"resonance":', resonance?.toJSON(), ','], '');
}
}