Input$MessageGroupInput constructor
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,
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,
});