EnterpriseCrmFrontendsEventbusProtoRollbackStrategy.fromJson constructor

EnterpriseCrmFrontendsEventbusProtoRollbackStrategy.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmFrontendsEventbusProtoRollbackStrategy.fromJson(core.Map json_)
    : this(
        parameters: json_.containsKey('parameters')
            ? EnterpriseCrmFrontendsEventbusProtoEventParameters.fromJson(
                json_['parameters'] as core.Map<core.String, core.dynamic>)
            : null,
        rollbackTaskImplementationClassName:
            json_['rollbackTaskImplementationClassName'] as core.String?,
        taskNumbersToRollback: (json_['taskNumbersToRollback'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );