short method

String short(
  1. BuildContext context
)

Formats date using short pattern using DateFormatPatterns.short

Implementation

String short(BuildContext context) {
  return _getPatterns(context).short.format(this);
}