EventDataValue constructor
EventDataValue({})
Implementation
EventDataValue(
{String? id,
required this.dataElement,
required this.value,
required this.event,
required bool dirty,
this.storedBy,
String? created,
String? lastUpdated,
String? name,
this.synced,
this.providedElsewhere})
: super(
id: id,
name: name,
created: created,
lastUpdated: lastUpdated,
dirty: dirty) {
this.id = this.id ?? '${this.event}_${this.dataElement}';
this.name = this.name ?? this.id;
}