Owner constructor

Owner({
  1. String? id,
  2. String? username,
})

Implementation

Owner({
  this.id,
  this.username,
});