Input$MessageGroupUpdateInput constructor

Input$MessageGroupUpdateInput({
  1. String? name,
  2. String? creator,
  3. Input$PictureInput? profilePicture,
  4. Input$MessageGroupWallpaperInput? wallpaper,
  5. Enum$MessageSoundEnum? sound,
  6. Enum$MessageGroupTypeEnum? type,
  7. required String id,
})

Implementation

factory Input$MessageGroupUpdateInput({
  String? name,
  String? creator,
  Input$PictureInput? profilePicture,
  Input$MessageGroupWallpaperInput? wallpaper,
  Enum$MessageSoundEnum? sound,
  Enum$MessageGroupTypeEnum? type,
  required String id,
}) =>
    Input$MessageGroupUpdateInput._({
      if (name != null) r'name': name,
      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 (type != null) r'type': type,
      r'id': id,
    });