Caller constructor

const Caller({
  1. dynamic username = "",
  2. dynamic name = "",
  3. dynamic pictureUrl = "",
  4. String id = "",
})

Implementation

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