Agent constructor

const Agent({
  1. int? id,
  2. String name = "",
  3. String username = "",
})

Implementation

const Agent({
  this.id,
  this.name = "",
  this.username = "",
});