hasAmplitudeControl method
Checks if amplitude control is supported on this device.
Implementation
@override
Future<bool> hasAmplitudeControl() async {
try {
final hasAmp =
await methodChannel.invokeMethod<bool>('hasAmplitudeControl');
return hasAmp ?? false;
} catch (_) {
return false;
}
}