getRecordingStatus method

  1. @override
Future<int> getRecordingStatus()
override

Method used to get the most recent status of the video recorder

Implementation

@override
Future<int> getRecordingStatus() async {
  return await _methodChannel.invokeMethod<int>("getRecordingStatus") ?? -1;
}