E2EResponse constructor

const E2EResponse({
  1. required String pubKey,
  2. required int createdAt,
  3. required String content,
})

Implementation

const E2EResponse({
  required this.pubKey,
  required this.createdAt,
  required this.content,
});