start method

bool start(
  1. String path,
  2. dynamic onRecordError(
    1. RecordErrorType
    )
)

start record

Implementation

bool start(String path, Function(RecordErrorType) onRecordError) {
  _onRecordError = onRecordError;
  _status = RecordStatus.RECORDING;
  _channel.invokeMethod("start", {'path': path});
  return true;
}