NotFoundException constructor Null safety

NotFoundException(
  1. {String? type,
  2. String? message}
)

Implementation

NotFoundException({String? type, String? message})
    : super(type: type, code: 'NotFoundException', message: message);