createVideoMessage method
Implementation
@override
Future<V2TimValueCallback<V2TimMsgCreateInfoResult>> createVideoMessage({
required String videoFilePath,
required String? type,
required int? duration,
required String? snapshotPath,
dynamic inputElement,
}) async {
return _v2timMessageManager.createVideoMessage({
"videoFilePath": videoFilePath,
"type": type,
"duration": duration,
"snapshotPath": snapshotPath,
"inputElement": inputElement,
});
}