optOutOfSchematicRecordings static method
This method is specifically for IOS to opt out of video recording NOTE: This will not work for Android
Implementation
static Future<void> optOutOfSchematicRecordings() async {
if (Platform.isIOS) {
await _channel.invokeMethod('optOutOfSchematicRecordings');
}
}