copyWith method

ItemPublicTokenExchangeRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? publicToken,
})

Implementation

ItemPublicTokenExchangeRequest copyWith(
    {String? clientId, String? secret, String? publicToken}) {
  return ItemPublicTokenExchangeRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      publicToken: publicToken ?? this.publicToken);
}