GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceProperties.fromJson constructor

GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceProperties.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceProperties.fromJson(
  core.Map json_,
) : this(
      badgeConfig: json_.containsKey('badgeConfig')
          ? GoogleAppsDriveLabelsV2BadgeConfig.fromJson(
              json_['badgeConfig'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      description: json_['description'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      insertBeforeChoice: json_['insertBeforeChoice'] as core.String?,
    );