hasTemporaryId method

bool hasTemporaryId(
  1. T model
)

Check if a model has a temporary ID (awaiting server assignment)

Implementation

bool hasTemporaryId(T model) {
  return _idNegotiationService.hasTemporaryId(model);
}