startSession method
Starts a new session.
Implementation
Future<void> startSession() async {
if (_startSessionDate != null) {
await endSession();
}
_startSessionDate = DateTime.now();
}
Starts a new session.
Future<void> startSession() async {
if (_startSessionDate != null) {
await endSession();
}
_startSessionDate = DateTime.now();
}