FlcEntry constructor

const FlcEntry({
  1. required List<FlcFrame> frames,
  2. List<FlcFrame> outputFrames = const [],
  3. String? origName,
})

Creates an FlcEntry with one or more ROHD source frames, optional outputFrames for generated-language positions, and an optional origName alias.

Implementation

const FlcEntry({
  required this.frames,
  this.outputFrames = const [],
  this.origName,
});