StructuredServiceItem.fromJson constructor

StructuredServiceItem.fromJson(
  1. 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,
      );