unregisterGlobalProperties method

Future<void> unregisterGlobalProperties({
  1. List<String> propertyNames = const <String>[],
})

Remove fields by their propertyNames to stop being sent with all future events

Implementation

Future<void> unregisterGlobalProperties({
  List<String> propertyNames = const <String>[],
}) =>
    identifyCall(
      AnalyticsCategoryMethod.unregisterGlobalProperties,
      () => defaultPlugin.unregisterGlobalProperties(
        propertyNames: propertyNames,
      ),
    );