setUserCity static method
Implementation
static void setUserCity(String city) {
if (isAndroid) {
_channel.invokeMethod('setUserCity', {
'city': city
});
} else if (isWeb) {
MetrixWeb.setUserCity(city);
}
}
static void setUserCity(String city) {
if (isAndroid) {
_channel.invokeMethod('setUserCity', {
'city': city
});
} else if (isWeb) {
MetrixWeb.setUserCity(city);
}
}