GoogleCloudChannelV1Parameter.fromJson constructor
GoogleCloudChannelV1Parameter.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1Parameter.fromJson(core.Map json_)
: this(
editable: json_['editable'] as core.bool?,
name: json_['name'] as core.String?,
value:
json_.containsKey('value')
? GoogleCloudChannelV1Value.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>,
)
: null,
);