ResponseStatus constructor

ResponseStatus(
  1. String status,
  2. String message,
  3. String? data
)

Constructs a ResponseStatus with the provided status, message, and data.

Implementation

ResponseStatus(this.status, this.message, this.data);