CDKApp constructor

const CDKApp({
  1. Key? key,
  2. String defaultAppearance = "system",
  3. String defaultColor = "systemBlue",
  4. required Widget child,
})

Implementation

const CDKApp(
    {Key? key,
    this.defaultAppearance = "system",
    this.defaultColor = "systemBlue",
    required this.child})
    : super(key: key);