Data constructor

Data({
  1. String? id,
  2. String? objec,
  3. String? ownedBy,
})

Implementation

Data({
  this.id,
  this.objec,
  this.ownedBy,
});