transVideo static method

Future<int> transVideo(
  1. String uid,
  2. String tid,
  3. String title,
  4. String body,
  5. String filePath,
  6. bool isGroup,
)

转换视频数据 成功返回0, 否则返回非0

Implementation

static Future<int> transVideo(String uid, String tid, String title, String body, String filePath, bool isGroup) async {
  int code = await _channel.invokeMethod("transVideo",{
    "uid": uid,
    "tid": tid,
    "title": title,
    "body":  body,
    "filePath": filePath,
    "isGroup":  isGroup});
  return code;
}