startRecording method
Implementation
@override
Future<void> startRecording({
required String outputPath,
int fps = 30,
int resolutionDivisor = 1,
}) async {
await methodChannel.invokeMethod<void>(
'startRecording',
<String, Object>{
'outputPath': outputPath,
'fps': fps,
'resolutionDivisor': resolutionDivisor,
},
);
}