defaultStartTime method

DateTime defaultStartTime(
  1. [DateTime? otherwise]
)

Implementation

DateTime defaultStartTime([DateTime? otherwise]) =>
    snippet != null && snippet!.scheduledStartTime != null
        ? snippet!.scheduledStartTime!
        : otherwise ?? DateTime.fromMillisecondsSinceEpoch(0).toUtc();