addVideoFile method

dynamic addVideoFile({
  1. required String url,
  2. String? title,
  3. bool? needSwitch,
})

Implementation

addVideoFile({required String url, String? title, bool? needSwitch}) {
  return _callFunc(
    jsonEncode({
      "key": "addVideoFile",
      "params": [url, title, needSwitch],
    }),
  );
}