ScheduledExerciseMapper.dart 406 B

1234567891011
  1. import 'package:flutter_habit/common/BaseArchitectural.dart';
  2. import 'package:flutter_habit/database/entity/ScheduledExercise.dart';
  3. class ScheduledExerciseMapper extends CommonMapper<ScheduledExercise> {
  4. ScheduledExerciseMapper._() : super(ScheduledExercise());
  5. static ScheduledExerciseMapper _instance = ScheduledExerciseMapper._();
  6. factory ScheduledExerciseMapper() {
  7. return _instance;
  8. }
  9. }