Service.fromJson constructor

Service.fromJson(
  1. Map json_
)

Implementation

Service.fromJson(core.Map json_)
  : this(
      businessEntityName: json_['businessEntityName'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      name: json_['name'] as core.String?,
      serviceId: json_['serviceId'] as core.String?,
    );