created method
Implementation
void created(int? at) {
final now = at ?? DateTime.now().toUtc().millisecondsSinceEpoch;
uuid = JRandom.generate(16);
createdAt = now;
updatedAt = now;
onCreated();
}
void created(int? at) {
final now = at ?? DateTime.now().toUtc().millisecondsSinceEpoch;
uuid = JRandom.generate(16);
createdAt = now;
updatedAt = now;
onCreated();
}