copyWith method

  1. @Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version')
TestVerifyBigFieldNumberUint32_Nested copyWith(
  1. void updates(
    1. TestVerifyBigFieldNumberUint32_Nested
    )
)
override

Apply updates to a copy of this message.

Makes a writable shallow copy of this message, applies the updates to it, and marks the copy read-only before returning it.

Implementation

@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TestVerifyBigFieldNumberUint32_Nested copyWith(void Function(TestVerifyBigFieldNumberUint32_Nested) updates) => super.copyWith((message) => updates(message as TestVerifyBigFieldNumberUint32_Nested)) as TestVerifyBigFieldNumberUint32_Nested;