ProjectRelation constructor

ProjectRelation({
  1. String? userId,
  2. String? role,
  3. DateTime? createdAt,
  4. DateTime? updatedAt,
})

Implementation

ProjectRelation({
  this.userId,
  this.role,
  this.createdAt,
  this.updatedAt,
});