getEffectsVolume method

Future<int> getEffectsVolume()

Implementation

Future<int> getEffectsVolume() async {
  String? result = await _channel.invokeMethod("getEffectsVolume");
  Map<String, dynamic> json = jsonDecode(result!);
  int? volume = json['volume'];
  return volume ?? -1;
}