getCommentsCount method

int getCommentsCount()

Implementation

int getCommentsCount() =>
    root
        .getList('onResponseReceivedEndpoints')!
        .first
        .get('reloadContinuationItemsCommand')!
        .getList('continuationItems')!
        .first
        .get('commentsHeaderRenderer')!
        .get('commentsCount')
        ?.getList('runs')!
        .first
        .getT<String>('text')
        .parseIntWithUnits()! ??
    0;