copyWith method

TransferCreateResponse copyWith({
  1. Transfer? transfer,
  2. String? requestId,
})

Implementation

TransferCreateResponse copyWith({Transfer? transfer, String? requestId}) {
  return TransferCreateResponse(
      transfer: transfer ?? this.transfer,
      requestId: requestId ?? this.requestId);
}