convertVoiceToText method

Future<V2TimValueCallback<String>> convertVoiceToText({
  1. required String msgID,
  2. required String language,
})

Implementation

Future<V2TimValueCallback<String>> convertVoiceToText({
  required String msgID,
  required String language, // "zh (cmn-Hans-CN)" "yue-Hant-HK" "en-US" "ja-JP"
}) async {
  throw UnimplementedError(
    'convertVoiceToText has not been implemented.',
  );
}