GoogleAppsDriveLabelsV2IntegerLimits.fromJson constructor
GoogleAppsDriveLabelsV2IntegerLimits.fromJson(
- Map json_
Implementation
GoogleAppsDriveLabelsV2IntegerLimits.fromJson(core.Map json_)
: this(
maxValue: json_.containsKey('maxValue')
? json_['maxValue'] as core.String
: null,
minValue: json_.containsKey('minValue')
? json_['minValue'] as core.String
: null,
);