GoogleAppsDriveLabelsV2LabelProperties.fromJson constructor
GoogleAppsDriveLabelsV2LabelProperties.fromJson(
- Map json_
Implementation
GoogleAppsDriveLabelsV2LabelProperties.fromJson(core.Map json_)
: this(
description: json_.containsKey('description')
? json_['description'] as core.String
: null,
title:
json_.containsKey('title') ? json_['title'] as core.String : null,
);