ParseInstallation constructor
ParseInstallation({
- bool? debug,
- ParseClient? client,
- bool? autoSendSessionId,
Creates an instance of ParseInstallation
Implementation
ParseInstallation({bool? debug, ParseClient? client, bool? autoSendSessionId})
: super(
keyClassInstallation,
client: client,
autoSendSessionId: autoSendSessionId,
debug: debug,
);