isCollection property

bool isCollection

A flag that indicates candidate is related to a category or group.

Candidate can be related with a category or group for example 'coffee', or some business name for example 'Starbucks'.

Implementation

bool get isCollection {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SuggestResult_getIsCollection(
        _handle, errorHandler);
  });
}