TeamsModel constructor

TeamsModel({
  1. bool enabled = false,
  2. bool shareQR = true,
  3. bool shareLink = true,
  4. String? webhookUrl,
  5. String? customMessage,
  6. List<String>? mentionUsers,
})

Implementation

TeamsModel({
  this.enabled = false,
  this.shareQR = true,
  this.shareLink = true,
  this.webhookUrl,
  this.customMessage,
  this.mentionUsers,
});