Files
syncrow-web/lib/pages/home/home_model/home_item_model.dart
2024-08-08 16:54:02 +03:00

22 lines
332 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,
});
}