EnterpriseCrmEventbusProtoEventBusProperties.fromJson constructor

EnterpriseCrmEventbusProtoEventBusProperties.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoEventBusProperties.fromJson(core.Map json_)
    : this(
        properties: json_.containsKey('properties')
            ? (json_['properties'] as core.List)
                .map((value) =>
                    EnterpriseCrmEventbusProtoPropertyEntry.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );