DeviceSelfRevokeEventBodyModel constructor

DeviceSelfRevokeEventBodyModel({
  1. required String? lastValidEventHash,
  2. required int? lastValidSequence,
  3. required DateTime timestamp,
})

Implementation

DeviceSelfRevokeEventBodyModel({
  required this.lastValidEventHash,
  required this.lastValidSequence,
  required this.timestamp,
}) : super(type: EventType.deviceSelfRevoke);