MuteStateData constructor

const MuteStateData({
  1. @JsonKey(name: 'muting') required bool isMuting,
})

Implementation

const factory MuteStateData({
  /// Indicates whether the user is muting the specified user as a result of
  /// this request.
  ///
  /// The returned value is `false` for a successful unmute request.
  @JsonKey(name: 'muting') required bool isMuting,
}) = _MuteStateData;