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