LifeInfoMapper.dart 334 B

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