stop method
Implementation
@override
void stop() {
if (state != RecorderState.recording) {
throw MinisoundPlatformException("Recorder not recording");
}
state = RecorderState.ready;
}
@override
void stop() {
if (state != RecorderState.recording) {
throw MinisoundPlatformException("Recorder not recording");
}
state = RecorderState.ready;
}