LCStatusQuery constructor

LCStatusQuery({
  1. String inboxType = LCStatus.InboxTypeDefault,
})

Constructs a LCQuery for LCStatus.

Implementation

LCStatusQuery({String inboxType = LCStatus.InboxTypeDefault})
    : super('_Status') {
  this.inboxType = inboxType;
  this.sinceId = 0;
  this.maxId = 0;
}