locationUpdate method
Implementation
void locationUpdate(double lat, double lang) {
try{
if (kIsWeb) {
ReFlutterWebSDK.userLocation(lat, lang);
} else {
RefluttersdkPlatform.instance.locationUpdate(lat, lang);
}
}catch(e){
debugPrint("$e");
}
}