fromPartialData static method
This requires only to set the fields which can be used & showed to the user directly.
Implementation
static SentNostrEvent fromPartialData({
required int kind,
required String content,
required NostrKeyPairs keyPairs,
List<List<String>>? tags,
DateTime? createdAt,
String? ots,
}) {
return SentNostrEvent.fromPartialData(
kind: kind,
content: content,
keyPairs: keyPairs,
createdAt: createdAt,
ots: ots,
tags: tags,
);
}