disableLogger static method

Future<void> disableLogger()

Disables the HMSLogger capability which is used for sending usage analytics of DTM SDK's methods to improve the service quality.

Implementation

static Future<void> disableLogger() async {
  await _channel.invokeMethod(
    'disableLogger',
  );
}