GraphFollowRecord constructor

  1. @JsonSerializable(includeIfNull: false)
const GraphFollowRecord({
  1. @Default('app.bsky.graph.follow') String $type,
  2. required String subject,
  3. required DateTime createdAt,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GraphFollowRecord({
  @Default('app.bsky.graph.follow') String $type,
  required String subject,
  required DateTime createdAt,

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