RegisterOptions constructor

RegisterOptions({
  1. bool? discloseCaller,
  2. String? match,
  3. String? invoke,
  4. bool? forwardTimeout,
  5. RetryDeduplication? autoDeduplication,
  6. Map<String, dynamic>? custom,
})

Implementation

RegisterOptions({
  this.discloseCaller,
  this.match,
  this.invoke,
  this.forwardTimeout,
  RetryDeduplication? autoDeduplication,
  Map<String, dynamic>? custom,
}) {
  if (custom != null) {
    this.custom.addAll(custom);
  }
  if (autoDeduplication != null) {
    this.autoDeduplication = autoDeduplication;
  }
}