Container.fromJson constructor

Container.fromJson(
  1. Map json_
)

Implementation

Container.fromJson(core.Map json_)
  : this(
      accountId: json_['accountId'] as core.String?,
      containerId: json_['containerId'] as core.String?,
      domainName:
          (json_['domainName'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      enabledBuiltInVariable:
          (json_['enabledBuiltInVariable'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      fingerprint: json_['fingerprint'] as core.String?,
      name: json_['name'] as core.String?,
      notes: json_['notes'] as core.String?,
      publicId: json_['publicId'] as core.String?,
      timeZoneCountryId: json_['timeZoneCountryId'] as core.String?,
      timeZoneId: json_['timeZoneId'] as core.String?,
      usageContext:
          (json_['usageContext'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );