UpiApplication constructor
UpiApplication({})
Implementation
UpiApplication({
required this.androidPackageName,
this.iosBundleId,
required this.appName,
this.discoveryCustomScheme,
}) {
if (io.Platform.isAndroid) {
lookUpMap[this.androidPackageName] = this;
} else if (this.iosBundleId != null) {
lookUpMap[this.iosBundleId!] = this;
}
}