DoNotDisturbResponse constructor

DoNotDisturbResponse({
  1. required bool enabled,
  2. int? startHour,
  3. int? startMin,
  4. int? endHour,
  5. int? endMin,
  6. String? timezone,
})

Implementation

DoNotDisturbResponse({
  required this.enabled,
  this.startHour,
  this.startMin,
  this.endHour,
  this.endMin,
  this.timezone,
});