Service.fromJson constructor
Implementation
factory Service.fromJson(Map<String, dynamic> json) {
return Service(
attributeNames: (json['AttributeNames'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
serviceCode: json['ServiceCode'] as String?,
);
}