copyWithWrapped method
TransactionsRulesCreateResponse
copyWithWrapped({
- Wrapped<
TransactionsCategoryRule> ? rule, - Wrapped<
String> ? requestId,
Implementation
TransactionsRulesCreateResponse copyWithWrapped(
{Wrapped<TransactionsCategoryRule>? rule, Wrapped<String>? requestId}) {
return TransactionsRulesCreateResponse(
rule: (rule != null ? rule.value : this.rule),
requestId: (requestId != null ? requestId.value : this.requestId));
}