setGPSLocation abstract method

void setGPSLocation(
  1. double latitude,
  2. double longitude, {
  3. Platform? platform,
})
inherited

Sets the GPS location of the session with latitude and longitude.

Example:

import 'package:dynatrace_flutter_plugin/dynatrace_flutter_plugin.dart';

Dynatrace().setGPSLocation(19, 155);

For more information, see Dynatrace documentation.

Implementation

void setGPSLocation(double latitude, double longitude, {Platform? platform});