copyWith method

  1. @Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
UserOperationV0_7 copyWith(
  1. void updates(
    1. UserOperationV0_7
    )
)

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('See https://github.com/google/protobuf.dart/issues/998.')
UserOperationV0_7 copyWith(void Function(UserOperationV0_7) updates) =>
    super.copyWith((message) => updates(message as UserOperationV0_7))
        as UserOperationV0_7;