Subscriptions

This commit is contained in:
Hillel Coren 2021-03-24 20:25:16 +02:00
parent 7ecdb6c6a5
commit 82e91bc92f
2 changed files with 12 additions and 1 deletions

View File

@ -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,
);
}

View File

@ -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
);
}