threadItems property

List<WallReplyAttachmentModel>? get threadItems

an array of objects for comments on a record (only for the wall.getComments method).

Implementation

List<WallReplyAttachmentModel>? get threadItems => payload['thread']?['items']
    ?.map((e) => WallReplyAttachmentModel((e as Map).cast<String, dynamic>()))
    .toList();