copyWith method

Implementation

ExceptionHandler copyWith([Map<Type, ExceptionEndpointCallingBinding>? map]) {
  var n = ExceptionHandler(_map);
  if (map != null) {
    n._map.addAll(map);
  }
  return n;
}