Person constructor

const Person({
  1. required String nick,
  2. required String? account,
  3. required String? away,
  4. required bool bot,
  5. required String? username,
  6. required String? host,
  7. required String? realname,
  8. required bool operator,
  9. required Map<String, String> metadata,
})

Implementation

const Person({
  required this.nick,
  required this.account,
  required this.away,
  required this.bot,
  required this.username,
  required this.host,
  required this.realname,
  required this.operator,
  required this.metadata,
});