profileGetProperty static method

Future<Object?> profileGetProperty(
  1. String propertyName
)

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});
}