VenueMapLifecycleListener constructor

VenueMapLifecycleListener(
  1. void onVenueAddedLambda(
    1. Venue
    ),
  2. void onVenueRemovedLambda(
    1. String
    )
)

The abstract class for for the Venue lifecycle events.

Use the VenueMap to add and remove the VenueMapLifecycleListener.

Implementation

factory VenueMapLifecycleListener(
  void Function(Venue) onVenueAddedLambda,
  void Function(String) onVenueRemovedLambda,

) => VenueMapLifecycleListener$Lambdas(
  onVenueAddedLambda,
  onVenueRemovedLambda,

);