setDeviceLocation method

Future<void> setDeviceLocation(
  1. double latitude,
  2. double longitude
)

Implementation

Future<void> setDeviceLocation(double latitude, double longitude) async {
  await UserExperiorPlatform.instance.setDeviceLocation(latitude, longitude);
}