LocationListener constructor

LocationListener(
  1. void onLocationUpdatedLambda(
    1. Location
    )
)

This abstract class should be implemented in order to receive notifications about location updates.

Implementation

factory LocationListener(
  void Function(Location) onLocationUpdatedLambda,

) => LocationListener$Lambdas(
  onLocationUpdatedLambda,

);