GoogleAppsDriveLabelsV2SelectionLimits.fromJson constructor

GoogleAppsDriveLabelsV2SelectionLimits.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2SelectionLimits.fromJson(core.Map json_)
    : this(
        listLimits: json_.containsKey('listLimits')
            ? GoogleAppsDriveLabelsV2ListLimits.fromJson(
                json_['listLimits'] as core.Map<core.String, core.dynamic>)
            : null,
        maxChoices: json_['maxChoices'] as core.int?,
        maxDeletedChoices: json_['maxDeletedChoices'] as core.int?,
        maxDisplayNameLength: json_['maxDisplayNameLength'] as core.int?,
        maxIdLength: json_['maxIdLength'] as core.int?,
      );