TrackedEntityAttributeValue constructor
TrackedEntityAttributeValue({})
Implementation
TrackedEntityAttributeValue(
{String? id,
String? name,
String? created,
String? lastUpdated,
required bool dirty,
required this.attribute,
required this.trackedEntityInstance,
required this.value,
this.synced})
: super(
id: id,
name: name,
created: created,
lastUpdated: lastUpdated,
dirty: dirty) {
this.id = '${this.trackedEntityInstance}_${this.attribute}';
this.name = this.id;
}