stopRecording method

Future<UArRecording?> stopRecording()

Implementation

Future<UArRecording?> stopRecording() async {
  final Map<Object?, Object?>? raw = await _invoke<Map<Object?, Object?>>("stopRecording");
  value = value.copyWith(isRecording: false);
  return raw == null ? null : UArRecording.fromMap(raw);
}