EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo.fromJson constructor

EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo.fromJson(
    core.Map json_)
    : this(
        originalExecutionInfoId:
            json_['originalExecutionInfoId'] as core.String?,
        replayMode: json_['replayMode'] as core.String?,
        replayReason: json_['replayReason'] as core.String?,
        replayedExecutionInfoIds:
            (json_['replayedExecutionInfoIds'] as core.List?)
                ?.map((value) => value as core.String)
                .toList(),
      );