SystemFiredEventDto.fromMap constructor

SystemFiredEventDto.fromMap(
  1. Map<String, Object?> json
)

Implementation

factory SystemFiredEventDto.fromMap(Map<String, Object?> json) =>
    SystemFiredEventDto(
      systemId: json['systemId'] as String,
      triggerEntityId: json['triggerEntityId'] as String?,
      durationMicros: json['durationMicros'] as int,
      succeeded: json['succeeded'] as bool,
      firedAtMicros: json['firedAtMicros'] as int,
    );