Caption constructor

Caption(
  1. FigureNum fn,
  2. Location loc
)

Implementation

Caption(FigureNum fn, Location loc){
  this._index = 0;
  this._fn = fn;
  this._captLocs = loc;
  this._captStrs = <String>[];
}