Files
syncrow-web/lib/pages/home/home_model/home_item_model.dart
2024-08-24 16:37:10 +03:00

18 lines
324 B
Dart

import 'package:flutter/cupertino.dart';
class HomeItemModel {
final String? title;
final String? icon;
final Color? color;
final bool? active;
final void Function(BuildContext context) onPress;
HomeItemModel({
this.title,
this.icon,
this.color,
this.active,
required this.onPress,
});
}