blockListMain property

BlockListMain? blockListMain

The main block list that disallows writing messages to the current user, receiving their status and photo, viewing of stories, and some other actions

Implementation

BlockListMain? get blockListMain {
  if (this is BlockListMain) {
    return this as BlockListMain;
  }
  return null;
}