anonymizeUser method

void anonymizeUser(
  1. bool shouldAnonymize
)

Opt-out logging for specific user

Implementation

void anonymizeUser(bool shouldAnonymize) {
  _methodChannel
      .invokeMethod("anonymizeUser", {'shouldAnonymize': shouldAnonymize});
}