Select the types of activity you want to include in your feed.
1import 'package:bluesky/app_bsky_feed_post.dart'; 2 3FeedPostRecord? tryParseRecord(Map<String, dynamic> record) { 4 try { 5 return FeedPostRecord.fromJson(record); 6 } catch (_) { 7 return null; 8 } 9}