softDeletesTz method

void softDeletesTz({
  1. String columnName = 'deleted_at',
  2. int precision = 3,
})

Implementation

void softDeletesTz({String columnName = 'deleted_at', int precision = 3}) {
  softDeletes(
    columnName: columnName,
    timezoneAware: true,
    precision: precision,
  );
}