removeCustomAttribute static method
Removes a custom user attribute used for push segmentation.
Implementation
static Future<void> removeCustomAttribute(String key) async {
await _channel.invokeMethod(MethodNames.removeCustomAttribute, {'key': key});
}