copyWith method

TransferRefundCancelResponse copyWith({
  1. String? requestId,
})

Implementation

TransferRefundCancelResponse copyWith({String? requestId}) {
  return TransferRefundCancelResponse(requestId: requestId ?? this.requestId);
}