AppFractal constructor
AppFractal({
- bool? onlyAuthorized,
- bool hideAppBar = false,
- Color? color,
- bool? isGated,
- bool enableTerminal = false,
- required String name,
- EventFractal? to,
- NodeFractal<
EventFractal> ? extend,
Implementation
AppFractal({
//this.mainGate,
//this.auths = const [],
//this.actions = const [],
bool? onlyAuthorized,
//this.createProfileFields = const ['first_name', 'last_name', 'email'],
//this.repoUrl,
this.hideAppBar = false,
Color? color,
//this.screens = const [],
bool? isGated,
this.enableTerminal = false,
required super.name,
super.to,
super.extend,
}) : onlyAuthorized = onlyAuthorized ?? defaultOnlyAuthorized,
isGated = isGated ?? defaultOnlyAuthorized,
color = color ?? defaultColor {
_construct();
}