AppScreen constructor

AppScreen({
  1. required String name,
  2. required Widget child,
  3. String app_path = "",
})

Implementation

AppScreen({
  required this.name,
  required this.child,
  this.app_path = "",
});