ReceiptRule constructor

ReceiptRule({
  1. required String name,
  2. List<ReceiptAction>? actions,
  3. bool? enabled,
  4. List<String>? recipients,
  5. bool? scanEnabled,
  6. TlsPolicy? tlsPolicy,
})

Implementation

ReceiptRule({
  required this.name,
  this.actions,
  this.enabled,
  this.recipients,
  this.scanEnabled,
  this.tlsPolicy,
});