copyWith method

Implementation

TransactionsRuleDetails copyWith(
    {enums.TransactionsRuleField? field,
    enums.TransactionsRuleType? type,
    String? query}) {
  return TransactionsRuleDetails(
      field: field ?? this.field,
      type: type ?? this.type,
      query: query ?? this.query);
}