(Null-Safe + V2) Audio Record Plugin that supports record, pause, resume, stop, and provide access to audio level metering properties average power peak power.
When I press recording button it give me error of null on null value, it is not giving me path of recorded file, "Null check operator used on a null value" on this line
var current = await _recorder?.current(channel: channel);
setState(() {
_current = current;
_currentStatus = _current!.status!;
});
When I press recording button it give me error of null on null value, it is not giving me path of recorded file, "Null check operator used on a null value" on this line
var current = await _recorder?.current(channel: channel); setState(() { _current = current; _currentStatus = _current!.status!; });