count property

int get count

Gets the number of entrances.

Returns

  • The number of entrances.

Throws

  • An exception if it fails.

Implementation

int get count {
  final OperationResult resultString = objectMethod(
    _id,
    'EntranceLocations',
    'getCount',
  );

  return resultString['result'];
}