count property

int get count

Get the entrances count.

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'];
}