GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestCreateSelectionChoiceRequest.fromJson constructor

GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestCreateSelectionChoiceRequest.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestCreateSelectionChoiceRequest.fromJson(
  core.Map json_,
) : this(
      choice: json_.containsKey('choice')
          ? GoogleAppsDriveLabelsV2FieldSelectionOptionsChoice.fromJson(
              json_['choice'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      fieldId: json_['fieldId'] as core.String?,
    );