isFetchFinished method

Future<bool> isFetchFinished()

Indicates whether the publisher data is fetched and ready to use.

Implementation

Future<bool> isFetchFinished() async {
  if (publisherSegmentationAgent != null) {
    return await publisherSegmentationAgent!.isFetchFinished();
  }
  return false;
}