1234567891011121314151617 |
- class HomeModule {
- final String key;
- final String moduleName;
- final String moduleIconPath;
- final double iconWidth;
- final double iconHeight;
- HomeModule({
- required this.key,
- required this.moduleName,
- required this.moduleIconPath,
- required this.iconWidth,
- required this.iconHeight,
- });
- }
|