ZenControllerNotFoundException constructor

ZenControllerNotFoundException({
  1. required String typeName,
})

Implementation

ZenControllerNotFoundException({
  required String typeName,
}) : super(
        'Controller not found',
        context: {'Type': typeName},
        suggestion:
            'Register $typeName in a scope or use createController in ZenView',
        docLink: 'https://github.com/sdegenaar/zenify#controllers',
      );