GoogleAppsDriveLabelsV2FieldDateOptions.fromJson constructor

GoogleAppsDriveLabelsV2FieldDateOptions.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2FieldDateOptions.fromJson(core.Map json_)
  : this(
      dateFormat: json_['dateFormat'] as core.String?,
      dateFormatType: json_['dateFormatType'] as core.String?,
      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,
    );