ArcaneWindow constructor

const ArcaneWindow({
  1. ArcaneTheme theme = const ArcaneTheme(),
  2. required Component child,
  3. Color? windowColor,
  4. Key? key,
})

Implementation

const ArcaneWindow({
  this.theme = const ArcaneTheme(),
  required this.child,
  this.windowColor,
  super.key,
});