SoundMessageNode constructor

SoundMessageNode({
  1. required String? path,
  2. required int duration,
})

Implementation

SoundMessageNode({
  required this.path,
  required this.duration,
}) : super(MessageElemTypeEnum.Sound);