GraphGetFollowersOutput constructor

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

Implementation

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

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