PackageNotFoundException constructor

PackageNotFoundException(
  1. String message, {
  2. Object? innerError,
  3. StackTrace? innerTrace,
  4. String? hint,
})

Implementation

PackageNotFoundException(
  String message, {
  Object? innerError,
  StackTrace? innerTrace,
  this.hint,
}) : super(message, innerError, innerTrace);