optIntoSchematicRecordings static method
This method is used for opting in to enable video recording at runtime This call is required for enabling video recording permission in IOS
This should be added before starting with configuration Else the video will not be recorded for IOS.
NOTE: This will only work on IOS
Implementation
static Future<void> optIntoSchematicRecordings() async {
if (Platform.isIOS) {
await _channel.invokeMethod('optIntoSchematicRecordings');
}
}