secondsToMilliseconds property

int secondsToMilliseconds

returns date in milliseconds as current Time + (this represented as seconds)

Implementation

int get secondsToMilliseconds =>
    DateTime.now().add(Duration(seconds: this)).millisecondsSinceEpoch;