StructuredServiceItem.fromJson constructor
StructuredServiceItem.fromJson(
- Map json_
Implementation
StructuredServiceItem.fromJson(core.Map json_)
: this(
description: json_.containsKey('description')
? json_['description'] as core.String
: null,
serviceTypeId: json_.containsKey('serviceTypeId')
? json_['serviceTypeId'] as core.String
: null,
);