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