validate static method
Implementation
static bool validate(final Map<String, dynamic> object) {
if (!object.containsKey('\$type')) return false;
return object['\$type'] == 'app.bsky.embed.images' ||
object['\$type'] == 'app.bsky.embed.images#main';
}