StrippedStateEvent constructor

StrippedStateEvent({
  1. required String type,
  2. required Map<String, Object?> content,
  3. required String senderId,
  4. String? stateKey,
})

Implementation

StrippedStateEvent(
    {required String type,
    required Map<String, Object?> content,
    required String senderId,
    this.stateKey})
    : super(type: type, content: content, senderId: senderId);