startRecordVideo method

Future startRecordVideo({
  1. required String filePath,
})

Implementation

Future startRecordVideo({required String filePath}) async {
  Map<String, dynamic> args = <String, dynamic>{'filePath': filePath};
  await _channel.invokeMethod('startRecordVideo', args);
}