MPushException constructor

const MPushException(
  1. String cause, {
  2. required int statusCode,
})

Initializes a new MPushException

@param cause The cause of the exception @param statusCode The status code of the exception

Implementation

const MPushException(
  this.cause, {
  required this.statusCode,
});