copyWith method

TransferCancelRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? transferId,
})

Implementation

TransferCancelRequest copyWith(
    {String? clientId, String? secret, String? transferId}) {
  return TransferCancelRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      transferId: transferId ?? this.transferId);
}