Automatic linting

This commit is contained in:
Github-actions
2021-10-07 06:00:51 +00:00
parent a1791b3af3
commit 18622b0c62
2 changed files with 1 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ class WorkoutSession {
required this.timeEnd,
});
WorkoutSession.now(){
WorkoutSession.now() {
timeStart = TimeOfDay.now();
timeEnd = TimeOfDay.now();
}

View File

@@ -871,7 +871,6 @@ class _SessionPageState extends State<SessionPage> {
timeEndController.text = timeToString(pickedTime)!;
_session.timeEnd = pickedTime;
}
},
onSaved: (newValue) {
_session.timeEnd = stringToTime(newValue);