attachments property

List<AttachmentModel> get attachments

Media commentary attachments (photos, links, etc.). See https://dev.vk.com/ru/reference/objects/comment#attachments

Implementation

List<AttachmentModel> get attachments =>
    transformAttachments((payload['attachments'] as List?)
            ?.map((e) => (e as Map).cast<String, dynamic>())
            .toList() ??
        const []);