AuthorizedOrgsDesc.fromJson constructor

AuthorizedOrgsDesc.fromJson(
  1. Map json_
)

Implementation

AuthorizedOrgsDesc.fromJson(core.Map json_)
  : this(
      assetType: json_['assetType'] as core.String?,
      authorizationDirection: json_['authorizationDirection'] as core.String?,
      authorizationType: json_['authorizationType'] as core.String?,
      name: json_['name'] as core.String?,
      orgs: (json_['orgs'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );