stopRecord static method

Future<void> stopRecord(
  1. DataType dataType
)

Stops the ongoing AutoRecorder service.

Implementation

static Future<void> stopRecord(
  DataType dataType,
) async {
  await _methodChannel.invokeMethod<void>(
    'stopRecord',
    dataType.toMap(),
  );
}