getFormattedDate method

String? getFormattedDate()

Implementation

String? getFormattedDate() {
  if (this == null) return null;

  return DateFormat(Constants().dateTimeExtFormat).format(this!);
}