You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
355 B

  1. // ignore_for_file: public_member_api_docs, sort_constructors_first
  2. import 'package:qadirneyriz/services/global/global.dart';
  3. import 'package:qadirneyriz/utils/hive/user_local_db.dart';
  4. class AppSetting {
  5. UserLocalDb userLocalDb;
  6. GlobalServices globalServices;
  7. AppSetting({
  8. required this.userLocalDb,
  9. required this.globalServices,
  10. });
  11. }