setDataInsightsEnable method

void setDataInsightsEnable({
  1. bool enable = true,
})
override

Implementation

void setDataInsightsEnable({bool enable = true}) {
  if (Platform.isIOS) {
    return;
  }
  print(flutter_log + "setDataInsightsEnable:");
  _channel.invokeMethod('setDataInsightsEnable', {'enable': enable});
}