ParseCloudFunction constructor

ParseCloudFunction(
  1. String functionName, {
  2. bool? debug,
  3. ParseClient? client,
  4. bool? autoSendSessionId,
})

Creates a new cloud function object

{https://docs.parseplatform.org/cloudcode/guide/}

Implementation

ParseCloudFunction(
  this.functionName, {
  bool? debug,
  ParseClient? client,
  bool? autoSendSessionId,
}) : super(
        functionName,
        client: client,
        autoSendSessionId: autoSendSessionId,
        debug: debug,
      ) {
  _path = '/functions/$functionName';
}