getEstimatedArrival method

DateTime getEstimatedArrival()

//////////// //////////// Provides estimated time of arrival

Implementation

// II.E - Analysis Methods
///////////////
/// Provides estimated time of arrival
DateTime getEstimatedArrival() {
  return DateTime.now().add(Duration(seconds: duration.round()));
}