NocAuthException constructor Null safety

const NocAuthException(
  1. String message,
  2. {int? statusCode}
)

Creates a NocAuthException with the given message.

Implementation

const NocAuthException(String message, {int? statusCode})
    : super(message, statusCode: statusCode);