proxibuy/lib/data/models/screen_model.dart

9 lines
182 B
Dart

import 'package:proxibuy/core/gen/assets.gen.dart';
class ScreenModel {
final String title;
final SvgGenImage icon;
ScreenModel({required this.title, required this.icon});
}