getUserLocation method
get user location coordinates
Implementation
Future<Coordinate?> getUserLocation() async {
final result = await _channel.invokeMethod('getUserLocation');
return result != null ? Coordinate.fromMap(result) : null;
}
get user location coordinates
Future<Coordinate?> getUserLocation() async {
final result = await _channel.invokeMethod('getUserLocation');
return result != null ? Coordinate.fromMap(result) : null;
}