GoogleCloudContentwarehouseV1AddToFolderAction.fromJson constructor

GoogleCloudContentwarehouseV1AddToFolderAction.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1AddToFolderAction.fromJson(core.Map json_)
    : this(
        folders: json_.containsKey('folders')
            ? (json_['folders'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );