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.
 
 
 
 
 
 

15 lines
260 B

  1. import 'package:qadirneyriz/config/network_config.dart';
  2. import 'package:qadirneyriz/config/ui_config.dart';
  3. class AppConfig {
  4. final UIConfig ui;
  5. final NetworkConfig network;
  6. const AppConfig({
  7. required this.ui,
  8. required this.network,
  9. });
  10. }