mirror of
https://github.com/WuKongIM/WuKongIMFlutterSDK
synced 2025-05-30 07:27:25 +00:00
41 lines
987 B
Dart
41 lines
987 B
Dart
import 'package:wukongimfluttersdk/model/wk_media_message_content.dart';
|
|
import 'package:wukongimfluttersdk/model/wk_message_content.dart';
|
|
import 'package:wukongimfluttersdk/type/const.dart';
|
|
|
|
class WKVoiceContent extends WKMediaMessageContent {
|
|
int timeTrad; // 语音秒长
|
|
String? waveform; // 语音波纹 base64编码
|
|
WKVoiceContent(this.timeTrad) {
|
|
contentType = WkMessageContentType.voice;
|
|
}
|
|
|
|
@override
|
|
Map<String, dynamic> encodeJson() {
|
|
return {
|
|
'timeTrad': timeTrad,
|
|
'url': url,
|
|
'waveform': waveform,
|
|
'localPath': localPath
|
|
};
|
|
}
|
|
|
|
@override
|
|
WKMessageContent decodeJson(Map<String, dynamic> json) {
|
|
timeTrad = readInt(json, 'timeTrad');
|
|
url = readString(json, 'url');
|
|
localPath = readString(json, 'localPath');
|
|
waveform = readString(json, 'waveform');
|
|
return this;
|
|
}
|
|
|
|
@override
|
|
String displayText() {
|
|
return '[语音]';
|
|
}
|
|
|
|
@override
|
|
String searchableWord() {
|
|
return '[语音]';
|
|
}
|
|
}
|