Moment.fromMillisecondsSinceEpoch constructor
Creates a new Moment based on miliseconds since the Epoch (January 1st 1970)
isUtc
: Dictates whether or not the passed values is in UTC
Implementation
Moment.fromMillisecondsSinceEpoch(int millisecondsSinceEpoch,
{bool isUtc: false}) {
_date = new DateTime.fromMillisecondsSinceEpoch(millisecondsSinceEpoch,
isUtc: isUtc);
}