currentInstallation static method

Future<ParseInstallation> currentInstallation()

Gets the current installation from storage

Implementation

static Future<ParseInstallation> currentInstallation() async {
  return (await _getFromLocalStore()) ?? (await _createInstallation());
}