PushResponse constructor

const PushResponse({
  1. String? status,
  2. dynamic response,
})

Builds a PushResponse from a status and response.

Implementation

const PushResponse({
  this.status,
  this.response,
});