copyWith method
TransactionsRulesListResponse
copyWith({
- List<
TransactionsCategoryRule> ? rules, - String? requestId,
Implementation
TransactionsRulesListResponse copyWith(
{List<TransactionsCategoryRule>? rules, String? requestId}) {
return TransactionsRulesListResponse(
rules: rules ?? this.rules, requestId: requestId ?? this.requestId);
}