RecorderManager.offStart(function listener)
Introduction
Cancel the listener for recording start events.
Usage Restrictions
Supported from 4.0.0
or higher version of the basic library.
Parameters
function listener
Listener function to be removed for recording start events.
Sample Code
// pages/index/index.js
Page({
offStart() {
const recorderManager = dlt.getRecorderManager();
recorderManager.offStart(() => {
console.log("Cancelled recording");
});
},
});