copyWith method

ElicitationRequestScope copyWith({
  1. Object? requestId = _acpCopyWithAbsent,
})

Implementation

ElicitationRequestScope copyWith({Object? requestId = _acpCopyWithAbsent}) =>
    ElicitationRequestScope(
      requestId: identical(requestId, _acpCopyWithAbsent)
          ? this.requestId
          : requestId as RequestId,
    );