categoryId property
venue's category unique identifier Category
Example:
// Get category ID
int categoryId = venue.getCategoryId();
print('Venue category ID: $categoryId');
Implementation
int get categoryId {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Int32 Function(Pointer<Void>),
int Function(Pointer<Void>)
>('navigine_sdk_flutter_Venue_categoryId_get'));
final _categoryIdHandle = _getFfi(this.ptr);
final _result = _categoryIdHandle;
exception.checkCallResult();
return _result;
}