acceptRecordingConsent method
override
Implementation
@override
Future<bool> acceptRecordingConsent() async {
return await methodChannel
.invokeMethod<bool>('acceptRecordingConsent')
.then<bool>((bool? value) => value ?? false);
}