fullShort method

String fullShort([
  1. String? localeCode
])

e.g. Aug-8 23

Implementation

String fullShort([String? localeCode]) {
  return DateFormat('MMM/d/yyyy', localeCode).format(this);
}