GoogleAppsDriveLabelsV2BatchUpdateLabelPermissionsResponse.fromJson constructor

GoogleAppsDriveLabelsV2BatchUpdateLabelPermissionsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2BatchUpdateLabelPermissionsResponse.fromJson(
  core.Map json_,
) : this(
      permissions:
          (json_['permissions'] as core.List?)
              ?.map(
                (value) => GoogleAppsDriveLabelsV2LabelPermission.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );