getTimestampInPast method

int getTimestampInPast()

Implementation

int getTimestampInPast() {
  return DateTime.now()
      .subtract(Duration(minutes: getInt()))
      .millisecondsSinceEpoch;
}