copyWith method

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

Implementation

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