friends property

List<int>? get friends

The IDs of the 3 friends who voted in the poll.

Implementation

List<int>? get friends => (payload['friends'] as List?)?.cast<int>();