withReportLocation method

Builder withReportLocation([
  1. bool reportLocation = true
])

Sets user's preference to allow Flurry to record location via GPS.

Implementation

Builder withReportLocation([bool reportLocation = true]) {
  builderAgent?.withReportLocation(reportLocation);
  return this;
}