Person constructor

const Person({
  1. bool bot = false,
  2. AndroidIcon<Object>? icon,
  3. bool important = false,
  4. String? key,
  5. String? name,
  6. String? uri,
})

Constructs an instance of Person.

Implementation

const Person({
  this.bot = false,
  this.icon,
  this.important = false,
  this.key,
  this.name,
  this.uri,
});