EngineNotInitilizedException constructor

EngineNotInitilizedException({
  1. String message = 'Engine not initialized',
  2. Object? origin,
  3. StackTrace? stackTrace,
})

Implementation

EngineNotInitilizedException({
  String message = 'Engine not initialized',
  Object? origin,
  StackTrace? stackTrace,
}) : super(message: message, origin: origin, stackTrace: stackTrace ?? StackTrace.current);