GetRoot constructor

const GetRoot({
  1. Key? key,
  2. required ConfigData config,
  3. required Widget child,
})

Implementation

const GetRoot({
  Key? key,
  required this.config,
  required this.child,
}) : super(key: key);