StarterpackRecord constructor

  1. @jsonSerializable
const StarterpackRecord({
  1. @typeKey @Default(appBskyGraphStarterpack) String type,
  2. required String name,
  3. String? description,
  4. List<Facet>? descriptionFacets,
  5. @AtUriConverter() required AtUri list,
  6. List<StarterpackFeedItem>? feeds,
  7. required DateTime createdAt,
})

Implementation

@jsonSerializable
const factory StarterpackRecord({
  @typeKey @Default(appBskyGraphStarterpack) String type,
  required String name,
  String? description,
  List<Facet>? descriptionFacets,
  @AtUriConverter() required AtUri list,
  List<StarterpackFeedItem>? feeds,
  required DateTime createdAt,
}) = _StarterpackRecord;