configureAppMonitoringService method
Future<bool>
configureAppMonitoringService({
- UsageInterval interval = UsageInterval.daily,
- int lookbackTimeMs = 10000,
Configures the app monitoring service with the specified interval and lookback time
Parameters:
interval
: The interval to use for usage stats queries (DAILY, WEEKLY, MONTHLY, YEARLY, BEST)lookbackTimeMs
: How far back in time to look for app usage data (in milliseconds)
Returns true
if the service was configured successfully, false
otherwise
Implementation
Future<bool> configureAppMonitoringService({
UsageInterval interval = UsageInterval.daily,
int lookbackTimeMs = 10000,
}) {
throw UnimplementedError(
'configureAppMonitoringService() has not been implemented.');
}