copyWith method

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

Implementation

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