Rights constructor

Rights({
  1. String? status,
})

Constructor for creating a Rights object.

The constructor initializes a Rights object with an optional named parameter:

  • status: The status attribute value of the rights.

Implementation

Rights({
  this.status,
});