create method
Future<void>
create({
- required BaiduSpeechBuildType type,
- required String appId,
- required String appKey,
- required String appSecret,
override
Implementation
@override
Future<void> create({
required BaiduSpeechBuildType type,
required String appId,
required String appKey,
required String appSecret,
}) {
return methodChannel.invokeMethod('create', {
'type': type.index,
'appId': appId,
'appKey': appKey,
'appSecret': appSecret,
});
}