GoogleAppsDriveLabelsV2SelectionLimits.fromJson constructor
GoogleAppsDriveLabelsV2SelectionLimits.fromJson(
- 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_.containsKey('maxChoices')
? json_['maxChoices'] as core.int
: null,
maxDeletedChoices: json_.containsKey('maxDeletedChoices')
? json_['maxDeletedChoices'] as core.int
: null,
maxDisplayNameLength: json_.containsKey('maxDisplayNameLength')
? json_['maxDisplayNameLength'] as core.int
: null,
maxIdLength: json_.containsKey('maxIdLength')
? json_['maxIdLength'] as core.int
: null,
);