time_progress_tracker/lib/selectors/time_progress_selectors.dart
Andreas Fahrecker 976fbec455 Renamed all Timer named things to TimeProgress
Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
2020-10-16 14:25:15 +02:00

5 lines
222 B
Dart

import 'package:time_progress_calculator/models/app_state.dart';
import 'package:time_progress_calculator/models/time_progress.dart';
List<TimeProgress> timeProgressListSelector(AppState state) => state.timeProgressList;