profileRemoveValueForKey static method

Future<void> profileRemoveValueForKey(
  1. String key
)

Remove the user profile property value specified by key from the user profile

Implementation

static Future<void> profileRemoveValueForKey(String key) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('profileRemoveValueForKey', {'key': key});
}