Input$MessageInput constructor

Input$MessageInput({
  1. String? text,
  2. String? gif,
  3. String? sticker,
  4. Input$CustomMessageInput? custom,
  5. Input$MessageMediaInput? media,
  6. Input$LonLatInput? location,
  7. required String messageGroup,
  8. List<String>? seenBy,
})

Implementation

factory Input$MessageInput({
  String? text,
  String? gif,
  String? sticker,
  Input$CustomMessageInput? custom,
  Input$MessageMediaInput? media,
  Input$LonLatInput? location,
  required String messageGroup,
  List<String>? seenBy,
}) =>
    Input$MessageInput._({
      if (text != null) r'text': text,
      if (gif != null) r'gif': gif,
      if (sticker != null) r'sticker': sticker,
      if (custom != null) r'custom': custom,
      if (media != null) r'media': media,
      if (location != null) r'location': location,
      r'messageGroup': messageGroup,
      if (seenBy != null) r'seenBy': seenBy,
    });