getSoftDeleteColumn method

String? getSoftDeleteColumn()
inherited

Returns the soft delete column name if the model supports it.

Implementation

String? getSoftDeleteColumn() {
  return _softDeleteColumns[this] ?? modelDefinition?.softDeleteColumn;
}