changeParameterFloat method

Future changeParameterFloat(
  1. String changeParameter,
  2. String component,
  3. String parameter,
  4. double floatValue,
)

Implementation

Future changeParameterFloat(String changeParameter, String component,
    String parameter, double floatValue) async {
  return _channel.invokeMethod('changeParameterFloat', <String, dynamic>{
    'changeParameter': changeParameter,
    'component': component,
    'parameter': parameter,
    'floatValue': floatValue,
  });
}