Follow constructor

const Follow({
  1. required String feedId,
  2. required String targetId,
  3. required DateTime createdAt,
  4. required DateTime updatedAt,
})

Builds a Follow

Implementation

const Follow({
  required this.feedId,
  required this.targetId,
  required this.createdAt,
  required this.updatedAt,
});