ModularApp constructor

const ModularApp({
  1. Key? key,
  2. required Module module,
  3. required Widget child,
  4. bool debugMode = true,
  5. bool notAllowedParentBinds = false,
})

Implementation

const ModularApp({
  Key? key,
  required this.module,
  required this.child,
  this.debugMode = true,
  this.notAllowedParentBinds = false,
}) : super(key: key);