indexId property

IdUid? indexId

Implementation

IdUid? get indexId => _indexId;
void indexId=(IdUid? value)

Implementation

set indexId(IdUid? value) {
  if (value != null) {
    if (value.id == 0 || value.uid == 0) {
      throw ArgumentError('indexId must contain valid ID & UID');
    }
  }
  _indexId = value;
}