copyWith method

TransactionsRulesListRequest copyWith({
  1. String? clientId,
  2. String? accessToken,
  3. String? secret,
})

Implementation

TransactionsRulesListRequest copyWith(
    {String? clientId, String? accessToken, String? secret}) {
  return TransactionsRulesListRequest(
      clientId: clientId ?? this.clientId,
      accessToken: accessToken ?? this.accessToken,
      secret: secret ?? this.secret);
}