copyWithWrapped method

LatestBlockResponse$Response copyWithWrapped({
  1. Wrapped<BlockSchema>? block,
})

Implementation

LatestBlockResponse$Response copyWithWrapped({Wrapped<BlockSchema>? block}) {
  return LatestBlockResponse$Response(
      block: (block != null ? block.value : this.block));
}