dateTimeFromTimestampNullable function

DateTime? dateTimeFromTimestampNullable(
  1. Timestamp? timestamp
)

Implementation

DateTime? dateTimeFromTimestampNullable(Timestamp? timestamp) {
  return timestamp?.toDate();
}