fromTimeStamp static method

DateTime? fromTimeStamp(
  1. int? timestamp
)

Implementation

static DateTime? fromTimeStamp(int? timestamp) => timestamp == null
    ? null
    : DateTime.fromMillisecondsSinceEpoch(timestamp * 1000);