call method
Implementation
@override
Object? call(Interpreter interpreter, List<Object?> arguments,
Map<Symbol, Object?> namedArguments) {
return Geolocator.getCurrentPosition().then((Position position) {
return GeolocatorPosition(position);
});
}