EnterpriseCrmFrontendsEventbusProtoParameterEntry.fromJson constructor
EnterpriseCrmFrontendsEventbusProtoParameterEntry.fromJson(
- Map json_
Implementation
EnterpriseCrmFrontendsEventbusProtoParameterEntry.fromJson(core.Map json_)
: this(
dataType: json_.containsKey('dataType')
? json_['dataType'] as core.String
: null,
key: json_.containsKey('key') ? json_['key'] as core.String : null,
masked:
json_.containsKey('masked') ? json_['masked'] as core.bool : null,
value: json_.containsKey('value')
? EnterpriseCrmFrontendsEventbusProtoParameterValueType.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>)
: null,
);