date property

Formats this datetime in the format year-month-day.

Implementation

Expression<String?> get date {
  return FunctionCallExpression(
    'DATE',
    [this, const Constant<String>('unixepoch')],
  );
}