You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/models/profile_menu.model.dart

16 lines
569 B
Dart

3 years ago
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
3 years ago
import 'package:mohem_flutter_app/models/dashboard/menu_entries.dart';
3 years ago
class ProfileMenu {
final String name;
3 years ago
final String icon;
3 years ago
final String route;
final String dynamicUrl;
final String functionName;
final String requestID;
3 years ago
final GetMenuEntriesList menuEntries;
final dynamic arguments;
ProfileMenu({this.name = '', this.icon = '', this.route = '', this.arguments = '', this.dynamicUrl = '', this.functionName = '', this.requestID = '', required this.menuEntries});
3 years ago
}