GetFollowersOutput constructor

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

Implementation

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

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