getUserLocationStream method

Stream<Coordinate> getUserLocationStream()

get user location updates as a stream

Implementation

Stream<Coordinate> getUserLocationStream() =>
    _coordinateEventChannel.receiveBroadcastStream().map(
          (e) => Coordinate.fromMap(e),
        );