ArcaneApp constructor

const ArcaneApp({
  1. ArcaneTheme theme = const ArcaneTheme(),
  2. required Component child,
  3. String? title,
  4. String? description,
  5. List<Component>? head,
  6. Key? key,
})

Implementation

const ArcaneApp({
  this.theme = const ArcaneTheme(),
  required this.child,
  this.title,
  this.description,
  this.head,
  super.key,
});