EnterpriseCrmEventbusProtoPropertyEntry.fromJson constructor

EnterpriseCrmEventbusProtoPropertyEntry.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoPropertyEntry.fromJson(core.Map json_)
  : this(
      key: json_['key'] as core.String?,
      value:
          json_.containsKey('value')
              ? EnterpriseCrmEventbusProtoValueType.fromJson(
                json_['value'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );