isQuery method

bool isQuery()

Implementation

bool isQuery() {
  if (mBlocks == null) {
    return false;
  } else if (mBlocks!.isEmpty) {
    return false;
  }
  return true;
}