initializeWithApps method

void initializeWithApps(
  1. List<AppInfo> apps
)

Initializes the package with a list of apps that you would like to advertise Alternative is to use initializeWithUrl if you wish to fetch app via a public URL

Implementation

void initializeWithApps(List<AppInfo> apps) async {
  customPrint("Initializing");
  _prefs = await SharedPreferences.getInstance();
  _apps = apps;
  customPrint("Initialization Complete");
}