setVoiceHasPlay method

void setVoiceHasPlay(
  1. bool hasPlay
)

Implementation

void setVoiceHasPlay(bool hasPlay) {
  attributes ??= {};
  attributes![voiceHasReadKey] = hasPlay;
  ChatUIKit.instance.updateMessage(message: this);
}