getValueFromManifestOrInfoPlist static method
Used as a getValueFromManifestOrInfoPlist class for Mirrorfly
- @property androidManifestKey indicates the manifest file meta data key
- @property iOSPlistKey indicates the info plist file key returns the value from Manifest file if its Platform.isAndroid or if its Platform.isIOS the value from info Plist file.
Implementation
static Future<String> getValueFromManifestOrInfoPlist({String? androidManifestKey, String? iOSPlistKey}) async {
return FlyChatFlutterPlatform.instance.getValueFromManifestOrInfoPlist(androidManifestKey: androidManifestKey, iOSPlistKey: iOSPlistKey);
}