mergeOptions method

CallOptions mergeOptions(
  1. CallOptions? custom
)
inherited

Merges default call options with custom options.

Use this when you need to add custom metadata or timeout while preserving authentication.

Implementation

CallOptions mergeOptions(CallOptions? custom) {
  final base = callOptions;
  if (custom == null) return base;
  return base.mergedWith(custom);
}