setWaveType static method

void setWaveType(
  1. waveTypes waveType
)

Set WaveType

Implementation

static void setWaveType(waveTypes waveType) async {
  await _channel.invokeMethod("setWaveform", <String, dynamic>{
    "waveType": waveType.toString().replaceAll("waveTypes.", "")
  });
}