stopRecord method

Future<void> stopRecord()

Implementation

Future<void> stopRecord() async {
  try {
    final int result = await _channel.invokeMethod('stopRecord');
  } on PlatformException catch (e) {
    print("Error from native: $e.message");
  }
}