EnterpriseCrmEventbusProtoExecutionTraceInfo.fromJson constructor

EnterpriseCrmEventbusProtoExecutionTraceInfo.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoExecutionTraceInfo.fromJson(core.Map json_)
    : this(
        parentEventExecutionInfoId:
            json_.containsKey('parentEventExecutionInfoId')
                ? json_['parentEventExecutionInfoId'] as core.String
                : null,
        traceId: json_.containsKey('traceId')
            ? json_['traceId'] as core.String
            : null,
      );