GraphGetSuggestedFollowsByActorOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const GraphGetSuggestedFollowsByActorOutput({
  1. @ProfileViewConverter() required List<ProfileView> suggestions,
  2. @Default(false) bool isFallback,
  3. int? recId,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GraphGetSuggestedFollowsByActorOutput({
  @ProfileViewConverter() required List<ProfileView> suggestions,

  /// If true, response has fallen-back to generic results, and is not scoped using relativeToDid
  @Default(false) bool isFallback,

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

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