copyWithWrapped method

Implementation

TransactionsRuleDetails copyWithWrapped(
    {Wrapped<enums.TransactionsRuleField>? field,
    Wrapped<enums.TransactionsRuleType>? type,
    Wrapped<String>? query}) {
  return TransactionsRuleDetails(
      field: (field != null ? field.value : this.field),
      type: (type != null ? type.value : this.type),
      query: (query != null ? query.value : this.query));
}