start method

Future<void> start()

Starts recording a conference.

Implementation

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