MessageDeltaContentTextAnnotationsFileCitation constructor

const MessageDeltaContentTextAnnotationsFileCitation({
  1. @JsonKey.new(name: 'file_id', includeIfNull: false) String? fileId,
  2. @JsonKey.new(includeIfNull: false) String? quote,
})

Factory constructor for MessageDeltaContentTextAnnotationsFileCitation

Implementation

const factory MessageDeltaContentTextAnnotationsFileCitation({
  /// The ID of the specific File the citation is from.
  @JsonKey(name: 'file_id', includeIfNull: false) String? fileId,

  /// The specific quote in the file.
  @JsonKey(includeIfNull: false) String? quote,
}) = _MessageDeltaContentTextAnnotationsFileCitation;