clearProfileAttribute method
Clear Profile Attribute @param key - Key of the attribute
Implementation
@override
Future<bool?> clearProfileAttribute(String key) async {
final bool? result =
await methodChannel.invokeMethod('clearProfileAttribute', {
"key": key,
});
return result;
}