TraceUser.fromJson constructor
Implementation
factory TraceUser.fromJson(Map<String, dynamic> json) {
return TraceUser(
serviceIds: (json['ServiceIds'] as List?)
?.whereNotNull()
.map((e) => ServiceId.fromJson(e as Map<String, dynamic>))
.toList(),
userName: json['UserName'] as String?,
);
}