isStored method

  1. @override
bool isStored(
  1. O o, {
  2. Transaction? transaction,
})
override

Implementation

@override
bool isStored(O o, {Transaction? transaction}) {
  var id = entityHandler.getID(o);
  return id != null;
}