copyWith method
Implementation
ElicitationFormModeRequest copyWith({
Object? requestedSchema = _acpCopyWithAbsent,
Object? requestId = _acpCopyWithAbsent,
}) => ElicitationFormModeRequest(
requestedSchema: identical(requestedSchema, _acpCopyWithAbsent)
? this.requestedSchema
: requestedSchema as ElicitationSchema,
requestId: identical(requestId, _acpCopyWithAbsent)
? this.requestId
: requestId as RequestId,
);