Subscriptions
This commit is contained in:
parent
7ecdb6c6a5
commit
82e91bc92f
|
|
@ -59,7 +59,12 @@ abstract class SubscriptionEntity extends Object
|
|||
return _$SubscriptionEntity._(
|
||||
id: id ?? BaseEntity.nextId,
|
||||
isChanged: false,
|
||||
// STARTER: constructor - do not remove comment
|
||||
isDeleted: false,
|
||||
createdAt: 0,
|
||||
updatedAt: 0,
|
||||
createdUserId: '',
|
||||
assignedUserId: '',
|
||||
archivedAt: 0,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,6 +53,12 @@ abstract class StubEntity extends Object with BaseEntity implements Built<StubEn
|
|||
return _$StubEntity._(
|
||||
id: id ?? BaseEntity.nextId,
|
||||
isChanged: false,
|
||||
isDeleted: false,
|
||||
createdAt: 0,
|
||||
updatedAt: 0,
|
||||
createdUserId: '',
|
||||
assignedUserId: '',
|
||||
archivedAt: 0,
|
||||
// STARTER: constructor - do not remove comment
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue