GoogleAppsDriveLabelsV2LabelLimits.fromJson constructor

GoogleAppsDriveLabelsV2LabelLimits.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2LabelLimits.fromJson(core.Map json_)
  : this(
      fieldLimits:
          json_.containsKey('fieldLimits')
              ? GoogleAppsDriveLabelsV2FieldLimits.fromJson(
                json_['fieldLimits'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      maxDeletedFields: json_['maxDeletedFields'] as core.int?,
      maxDescriptionLength: json_['maxDescriptionLength'] as core.int?,
      maxDraftRevisions: json_['maxDraftRevisions'] as core.int?,
      maxFields: json_['maxFields'] as core.int?,
      maxTitleLength: json_['maxTitleLength'] as core.int?,
      name: json_['name'] as core.String?,
    );