History.fromSafety constructor

History.fromSafety(
  1. Safety<Object> safety
)

Implementation

factory History.fromSafety(Safety<Object> safety) {
    return History._(
        safety.resultType,
        safety.message,
        safety.classLocation,
        safety.functionLocation,
        safety.monitor,
        safety.debug,
        safety.historyList
    );
}