id property

int get id

Get the category Id.

Returns

  • The category Id

Throws

  • An exception if it fails.

Implementation

int get id {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkCategory',
    'getId',
  );

  return resultString['result'];
}