start method

  1. @override
Future<void> start({
  1. String localeId = 'en-US',
  2. bool continuous = false,
})
override

Implementation

@override
Future<void> start({String localeId = 'en-US', bool continuous = false}) async {
  await methodChannel.invokeMethod('start', {'localeId': localeId, 'continuous': continuous});
}