unregisterGlobalProperties method

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

Implementation

Future<void> unregisterGlobalProperties(
    {List<String> propertyNames = const <String>[]}) async {
  return plugins.length == 1
      ? plugins[0].unregisterGlobalProperties(propertyNames: propertyNames)
      : throw _pluginNotAddedException('Analytics');
}