VenueLifecycleListener constructor

VenueLifecycleListener(
  1. void onVenueAddedLambda(
    1. Venue
    ),
  2. void onVenueRemovedLambda(
    1. int
    )
)

The abstract class for for the Venue lifecycle events.

Use the VenueMap to add and remove the VenueLifecycleListener.

Implementation

factory VenueLifecycleListener(
  void Function(Venue) onVenueAddedLambda,
  void Function(int) onVenueRemovedLambda,

) => VenueLifecycleListener$Lambdas(
  onVenueAddedLambda,
  onVenueRemovedLambda,

);