ServiceType.fromJson constructor

ServiceType.fromJson(
  1. Map json_
)

Implementation

ServiceType.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        serviceTypeId: json_.containsKey('serviceTypeId')
            ? json_['serviceTypeId'] as core.String
            : null,
      );