Loading...
Searching...
No Matches
Venue Class Referenceabstract

Class is used for storing venue. More...

Inherits Finalizable.

Public Attributes

Point get point
 venue's X and Y coordinates in meters as Point (within the sublocation).
 
int get locationId
 venue's location identifier.
 
int get sublocationId
 venue's sublocation identifier.
 
int get id
 venue's identifier.
 
String get name
 venue's name.
 
String get phone
 venue's phone.
 
String get descript
 venue's description.
 
String get alias
 venue's alias.
 
int get categoryId
 venue's category unique identifier Category
 
String get imageUrl
 venue's image url if specified.
 

Detailed Description

Class is used for storing venue.

Referenced from Sublocation.

Definition at line 20 of file venue.dart.

Member Data Documentation

◆ alias

String get Venue.alias

venue's alias.

Dart code snippet:

// Get venue alias
String? alias = venue.getAlias();
print('Venue alias: $alias');

Definition at line 102 of file venue.dart.

◆ categoryId

int get Venue.categoryId

venue's category unique identifier Category

Dart code snippet:

// Get category ID
int categoryId = venue.getCategoryId();
print('Venue category ID: $categoryId');

Definition at line 112 of file venue.dart.

◆ descript

String get Venue.descript

venue's description.

Dart code snippet:

// Get venue description
String? venueDescription = venue.getDescript();
print('Venue description: $venueDescription');

Definition at line 92 of file venue.dart.

◆ id

int get Venue.id

venue's identifier.

Dart code snippet:

// Get venue ID
int venueId = venue.getId();
print('Venue ID: $venueId');

Definition at line 62 of file venue.dart.

◆ imageUrl

String get Venue.imageUrl

venue's image url if specified.

Dart code snippet:

// Get venue image URL
String? imageUrl = venue.getImageUrl();
if (imageUrl != null) {
print('Venue image URL: $imageUrl');
}

Definition at line 122 of file venue.dart.

◆ locationId

int get Venue.locationId

venue's location identifier.

Dart code snippet:

// Get venue location ID
int locationId = venue.getLocationId();
print('Venue location ID: $locationId');

Definition at line 42 of file venue.dart.

◆ name

String get Venue.name

venue's name.

Dart code snippet:

// Get venue name
String? venueName = venue.getName();
print('Venue name: $venueName');

Definition at line 72 of file venue.dart.

◆ phone

String get Venue.phone

venue's phone.

Dart code snippet:

// Get venue phone
String? phone = venue.getPhone();
print('Venue phone: $phone');

Definition at line 82 of file venue.dart.

◆ point

Point get Venue.point

venue's X and Y coordinates in meters as Point (within the sublocation).

Dart code snippet:

// Get venue point
Point? point = venue.getPoint();
if (point != null) {
demonstratePointUsage(point);
}

Definition at line 32 of file venue.dart.

◆ sublocationId

int get Venue.sublocationId

venue's sublocation identifier.

Dart code snippet:

// Get venue sublocation ID
int sublocationId = venue.getSublocationId();
print('Venue sublocation ID: $sublocationId');

Definition at line 52 of file venue.dart.


The documentation for this class was generated from the following file: