GoogleAppsDriveLabelsV2DateLimits.fromJson constructor

GoogleAppsDriveLabelsV2DateLimits.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2DateLimits.fromJson(core.Map json_)
    : this(
        maxValue: json_.containsKey('maxValue')
            ? GoogleTypeDate.fromJson(
                json_['maxValue'] as core.Map<core.String, core.dynamic>)
            : null,
        minValue: json_.containsKey('minValue')
            ? GoogleTypeDate.fromJson(
                json_['minValue'] as core.Map<core.String, core.dynamic>)
            : null,
      );