ParseCloudFunction constructor
ParseCloudFunction(
- String functionName, {
- bool? debug,
- ParseClient? client,
- 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';
}