adjustLocalVolume method

Future<int> adjustLocalVolume(
  1. int volume
)

Implementation

Future<int> adjustLocalVolume(int volume) async {
  int code = await _channel.invokeMethod('adjustLocalVolume', volume) ?? -1;
  return code;
}