svFrame property
First SystemVerilog output frame, or null if none.
Convenience accessor for backward compatibility — equivalent to
outputFrames.where((f) => f.type == 'sv').firstOrNull.
Implementation
FlcFrame? get svFrame => outputFrames.cast<FlcFrame?>().firstWhere(
(f) => f!.type == 'sv',
orElse: () => null,
);