Chat constructor

const Chat({
  1. required String chat,
  2. String? label,
})

Constructs a Chat instance.

Once created, no properties of a Chat object may be changed.

Implementation

const Chat({
  required this.chat,
  this.label,
});