ActorGetSuggestionsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const ActorGetSuggestionsOutput({
  1. String? cursor,
  2. @ProfileViewConverter() required List<ProfileView> actors,
  3. int? recId,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ActorGetSuggestionsOutput({
  String? cursor,
  @ProfileViewConverter() required List<ProfileView> actors,

  /// Snowflake for this recommendation, use when submitting recommendation events.
  int? recId,

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