sendRequestLocationNotification function
sends a request location notification to the atsign
.
before calling this atsign
should be checked if valid or not.
Implementation
Future<bool?> sendRequestLocationNotification(String atsign) async {
var result = await RequestLocationService().sendRequestLocationEvent(atsign);
return result;
}