suckUp method

Future suckUp(
  1. String destFilePath
)

Edit the video based on the tapiocaBalls(list of processing)

Implementation

Future suckUp(String destFilePath) {
  final Map<String, Map<String, dynamic>> processing = Map.fromIterable(tapiocaBalls, key: (v) => v.toTypeName(), value: (v) => v.toMap());
  return VideoEditor.writeVideofile(content.name, destFilePath, processing);
}