setLocation static method

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

Set the user profile location in CleverTap

Implementation

static Future<void> setLocation(double latitude, double longitude) async {
  return await _dartToNativeMethodChannel.invokeMethod(
      'setLocation', {'latitude': latitude, 'longitude': longitude});
}