startVideoRecording method
Starts recording, auto-stopping at maxDuration so a capped composer
never has to police the length after the fact.
Implementation
@override
Future<void> startVideoRecording({Duration? maxDuration}) async {
lastMaxDuration = maxDuration;
_isRecording.value = true;
_recordedDuration.value = Duration.zero;
}