LinkedResponse constructor

LinkedResponse({
  1. String? status,
  2. String? message,
  3. LinkedData? data,
})

Implementation

LinkedResponse({
    this.status,
    this.message,
    this.data,
});