GetFollowsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const GetFollowsOutput({
  1. @ProfileViewConverter() required ProfileView subject,
  2. String? cursor,
  3. @ProfileViewConverter() required List<ProfileView> follows,
  4. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

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

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _GetFollowsOutput;