startVideoTracksOnApplicationForeground static method
Implementation
static Future<void> startVideoTracksOnApplicationForeground(
    bool restoreVideoRemoteStream, bool restoreVideoLocalStream) async {
  await _channel.invokeMethod('startVideoTracksOnApplicationForeground', {
    'restoreVideoRemoteStream': restoreVideoRemoteStream,
    'restoreVideoLocalStream': restoreVideoLocalStream
  });
}