startSessionDateForSession method

Future<DateTime?> startSessionDateForSession(
  1. int session
)

The date of start of a session. @param session The index of the session. @return The date when the session with the index has started, if no session is found this function returns null.

Implementation

Future<DateTime?> startSessionDateForSession(int session) {
  return _sessionManager.startSessionDateForSession(session);
}