convertToYmdHms property

String? get convertToYmdHms

Implementation

String? get convertToYmdHms {
  if (this != null) {
    var dateFormat = DateFormat('y-MM-DD hh:mm:ss');
    var dateTime = DateTime.fromMillisecondsSinceEpoch(this!);
    return dateFormat.format(dateTime);
  }
  return null;
}