Offer constructor

Offer(
  1. int _id,
  2. String? _category,
  3. String? _title,
  4. String? _description,
  5. String? _code,
)

Implementation

Offer(super._id, this._category, this._title, this._description, this._code);