fromTimestamp static method

DateTime fromTimestamp(
  1. int timestamp
)

Implementation

static DateTime fromTimestamp(int timestamp) {
  return DateTime.fromMillisecondsSinceEpoch(timestamp);
}