GoogleAppsDriveLabelsV2LabelDisplayHints.fromJson constructor

GoogleAppsDriveLabelsV2LabelDisplayHints.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2LabelDisplayHints.fromJson(core.Map json_)
    : this(
        disabled: json_.containsKey('disabled')
            ? json_['disabled'] as core.bool
            : null,
        hiddenInSearch: json_.containsKey('hiddenInSearch')
            ? json_['hiddenInSearch'] as core.bool
            : null,
        priority: json_.containsKey('priority')
            ? json_['priority'] as core.String
            : null,
        shownInApply: json_.containsKey('shownInApply')
            ? json_['shownInApply'] as core.bool
            : null,
      );