RootWidget constructor

const RootWidget({
  1. Key? key,
  2. Widget? child,
  3. String? debugShortDescription,
})

Creates a RootWidget.

Implementation

const RootWidget({
  super.key,
  this.child,
  this.debugShortDescription,
});