AppGadget constructor

const AppGadget({
  1. Key? key,
  2. required Widget child,
  3. Init? init,
  4. Dispose? dispose,
  5. List<Service>? services,
})

Implementation

const AppGadget({
  Key? key,
  required this.child,
  this.init,
  this.dispose,
  this.services,
}) : super(key: key);