getContinuationToken function

String? getContinuationToken(
  1. List results
)

Get the token used for continuations.

Implementation

String? getContinuationToken(List results) {
  return nav(results.last, CONTINUATION_TOKEN, nullIfAbsent: true) as String?;
}