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