nextCursor property
String?
get
nextCursor
An opaque token representing the pagination position after the last returned result.
Implementation
String? get nextCursor => data['nextCursor'] as String?;
set
nextCursor
(String? value)
Implementation
set nextCursor(String? value) => data['nextCursor'] = value;