EnterpriseCrmEventbusProtoNodeIdentifier.fromJson constructor

EnterpriseCrmEventbusProtoNodeIdentifier.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoNodeIdentifier.fromJson(core.Map json_)
    : this(
        elementIdentifier: json_.containsKey('elementIdentifier')
            ? json_['elementIdentifier'] as core.String
            : null,
        elementType: json_.containsKey('elementType')
            ? json_['elementType'] as core.String
            : null,
      );