start abstract method

Future<void> start(
  1. String recorderId,
  2. RecordConfig config, {
  3. required String path,
})

Starts new recording session.

path: The output path file. Required on all IO platforms. On web: This parameter is ignored.

Output path can be retrieves when stop method is called.

Implementation

Future<void> start(String recorderId, RecordConfig config,
    {required String path});