topics property
List?
get
topics
The topics to filter by or null
to match any topics.
Each entry represents an AND condition that must match, or may be null to match anything.
If a given entry is an Array, then that entry is treated as an OR for any value in the entry.
Implementation
List<dynamic>? get topics => impl.topics;
set
topics
(List? topics)
Implementation
set topics(List<dynamic>? topics) => impl.topics = topics;