copyWith method

ElicitationPropertySchemaUnknown copyWith({
  1. Object? raw = _acpCopyWithAbsent,
})

Implementation

ElicitationPropertySchemaUnknown copyWith({
  Object? raw = _acpCopyWithAbsent,
}) => ElicitationPropertySchemaUnknown(
  identical(raw, _acpCopyWithAbsent)
      ? this.raw
      : raw as Map<Object?, Object?>,
);