toggleAutoQuality method
Toggles the auto-quality adjustment setting.
Implementation
@override
Future<void> toggleAutoQuality() async {
  try {
    return await _methodChannel.invokeMethod("autoQuality");
  } catch (e) {
    throw Exception(
        "Unable to toggle auto-quality adjustment [Toggle Auto Quality]");
  }
}