Input$MessageGroupInput constructor

Input$MessageGroupInput({
  1. String? name,
  2. bool? mute,
  3. String? creator,
  4. Input$PictureInput? profilePicture,
  5. Input$MessageGroupWallpaperInput? wallpaper,
  6. Enum$MessageSoundEnum? sound,
  7. Enum$MessageGroupStatusEnum? status,
  8. Input$TargetACIInput? target,
  9. Enum$MessageGroupTypeEnum? type,
  10. List<String>? members,
})

Implementation

factory Input$MessageGroupInput({
  String? name,
  bool? mute,
  String? creator,
  Input$PictureInput? profilePicture,
  Input$MessageGroupWallpaperInput? wallpaper,
  Enum$MessageSoundEnum? sound,
  Enum$MessageGroupStatusEnum? status,
  Input$TargetACIInput? target,
  Enum$MessageGroupTypeEnum? type,
  List<String>? members,
}) =>
    Input$MessageGroupInput._({
      if (name != null) r'name': name,
      if (mute != null) r'mute': mute,
      if (creator != null) r'creator': creator,
      if (profilePicture != null) r'profilePicture': profilePicture,
      if (wallpaper != null) r'wallpaper': wallpaper,
      if (sound != null) r'sound': sound,
      if (status != null) r'status': status,
      if (target != null) r'target': target,
      if (type != null) r'type': type,
      if (members != null) r'members': members,
    });