ZenControllerDisposedException constructor

ZenControllerDisposedException({
  1. required String typeName,
})

Implementation

ZenControllerDisposedException({
  required String typeName,
}) : super(
        'Controller has been disposed',
        context: {'Type': typeName},
        suggestion: 'Do not access controller after it has been disposed',
        docLink: 'https://github.com/sdegenaar/zenify#controllers',
      );