removeCustomAttribute static method

Future<void> removeCustomAttribute(
  1. String key
)

Removes a custom user attribute used for push segmentation.

Implementation

static Future<void> removeCustomAttribute(String key) async {
  await _channel.invokeMethod(MethodNames.removeCustomAttribute, {'key': key});
}