profileGetProperty static method
Returns the user profile property value for the specified key.
Implementation
static Future<Object?> profileGetProperty(String propertyName) async {
return await _dartToNativeMethodChannel
.invokeMethod('profileGetProperty', {'propertyName': propertyName});
}