BaseEntity constructor
BaseEntity({})
Implementation
BaseEntity(
{required this.id,
this.name,
this.displayName,
this.shortName,
this.lastUpdated,
this.created,
this.code,
required this.dirty}) {
this.id = this.id ?? DhisUidGenerator.generate();
this.created =
this.created ?? DateTime.now().toIso8601String().split('.')[0];
this.lastUpdated = this.lastUpdated ?? this.created;
}