sendVoiceMessage method
Implementation
Future<void> sendVoiceMessage(
String path, int duration, String? displayName) async {
final message = Message.createVoiceSendMessage(
targetId: profile.id,
chatType: chatType,
filePath: path,
duration: duration,
displayName: displayName,
);
sendMessage(message);
}