setLocationCollectionEnabled static method

void setLocationCollectionEnabled(
  1. bool enabled
)

Whether or not the AppLovin SDK will collect the device location. Defaults to true.

Location Passing

Implementation

static void setLocationCollectionEnabled(bool enabled) {
  channel.invokeMethod('setLocationCollectionEnabled', {
    'value': enabled,
  });
}