ifVmIsNull property

bool ifVmIsNull

Implementation

bool get ifVmIsNull {
  if (!_vmCreated)
    throw StoreException("You can't reference the view-model "
        "before it's created and returned by the fromStore method.");

  return (_vm == null);
}