start method

  1. @override
Future<void> start(
  1. String path, {
  2. MediaStreamTrack? videoTrack,
  3. RecorderAudioChannel? audioChannel,
})

For Android use audioChannel param For iOS use audioTrack

Implementation

@override
Future<void> start(String path,
        {MediaStreamTrack? videoTrack, RecorderAudioChannel? audioChannel}) =>
    _delegate.start(path, videoTrack: videoTrack, audioChannel: audioChannel);