toTimestamp method

String? toTimestamp()

Format DateTime to Unix timestamp

Implementation

String? toTimestamp() {
  if (this == null) return null;
  return this!.millisecondsSinceEpoch.toString();
}