UpdateNewBotConnection constructor

const UpdateNewBotConnection({
  1. required bool confirmed,
  2. required int botId,
  3. DateTime? date,
  4. String? device,
  5. String? location,
})

Update New Bot Connection constructor.

Implementation

const UpdateNewBotConnection({
  required this.confirmed,
  required this.botId,
  this.date,
  this.device,
  this.location,
}) : super._();