ParseInstallation constructor

ParseInstallation({
  1. bool? debug,
  2. ParseClient? client,
  3. bool? autoSendSessionId,
})

Creates an instance of ParseInstallation

Implementation

ParseInstallation({bool? debug, ParseClient? client, bool? autoSendSessionId})
    : super(
        keyClassInstallation,
        client: client,
        autoSendSessionId: autoSendSessionId,
        debug: debug,
      );