addFeatureFlags method

  1. @override
Future<void> addFeatureFlags(
  1. List<BugsnagFeatureFlag> featureFlags
)
inherited

Add a collection of feature flags. This has the same effect as calling addFeatureFlag for each value passed, but it typically faster when there are more than one FeatureFlag.

See also:

Implementation

@override
Future<void> addFeatureFlags(List<BugsnagFeatureFlag> featureFlags) =>
    client.addFeatureFlags(featureFlags);