EmbedGetEmbedExternalViewInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const EmbedGetEmbedExternalViewInput({
  1. required String url,
  2. @AtUriConverter.new() required List<AtUri> uris,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory EmbedGetEmbedExternalViewInput({
  /// The canonical web URL the embed represents (typically the URL the user pasted into the composer). Used as the returned view's `uri`. May be used for validation in the future.
  required String url,
  @AtUriConverter() required List<AtUri> uris,

  Map<String, dynamic>? $unknown,
}) = _EmbedGetEmbedExternalViewInput;