start method

Future<void> start(
  1. FileConverted fileConverted
)

Starts presenting a converted file. The fileConverted parameter refers to the file to be presented.

Implementation

Future<void> start(FileConverted fileConverted) async {
  await _methodChannel.invokeMethod("start", fileConverted.toJson());
  return Future.value();
}