start method

Future start()

Request an initialized recording instance to be started Once executed, audio recording will start working and a file will be generated in user's file system

Implementation

Future start() async {
  await _channel.invokeMethod('start');
  _onTimer();
}