Feed constructor

Feed({
  1. required String id,
  2. required String projectId,
  3. required DateTime createdAt,
  4. required String name,
  5. required String description,
  6. required String visibility,
  7. required bool paused,
  8. required Map<String, String> annotations,
  9. required Object? messageSchema,
})

Implementation

Feed({
  required this.id,
  required this.projectId,
  required this.createdAt,
  required this.name,
  required this.description,
  required this.visibility,
  required this.paused,
  required this.annotations,
  required this.messageSchema,
});