canBeDeserialized static method
Wether the given dataFromRelay
can be deserialized into a NostrEvent.
Implementation
static bool canBeDeserialized(String dataFromRelay) {
final decoded = jsonDecode(dataFromRelay) as List;
return decoded.first == NostrConstants.event;
}