GoogleAppsDriveLabelsV2FieldDateOptions.fromJson constructor

GoogleAppsDriveLabelsV2FieldDateOptions.fromJson(
  1. Map json_
)

Implementation

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