AppRoute constructor

AppRoute(
  1. {required String route,
  2. required Widget widget(
    1. Map<String, dynamic> parameters
    ),
  3. bool? user}
)

Implementation

AppRoute({
  required this.route,
  required this.widget,
  this.user,
});