onGetVenueCompleted abstract method

void onGetVenueCompleted(
  1. int venueId,
  2. VenueModel? venueModel,
  3. bool online,
  4. VenueStyle? venueStyle,
)

Called when loading of a venue or its retrieval from the cache is completed.

  • venueId The id of the venue.

  • venueModel The venue model.

  • online True if a new venue was loaded from the server and false otherwise.

  • venueStyle The style associated with the venue.

Implementation

void onGetVenueCompleted(int venueId, VenueModel? venueModel, bool online, VenueStyle? venueStyle);