start method

Future<bool> start({
  1. bool autoRecognize = false,
  2. bool requestRadioMetadata = false,
})

This function will automatic start the recording and recognizing process.

autoRecognize & requestRadioMetadata are false by default

Implementation

Future<bool> start({
  bool autoRecognize = false,
  bool requestRadioMetadata = false,
}) async {
  final bool data = await _channel.invokeMethod(
    'start',
    {
      "autoRecognize": autoRecognize,
      "requestRadioMetadata": requestRadioMetadata,
    },
  );
  return data;
}