result method

List<JrlLine> result()

Returns the list of JrlLine entries that have a valid valuta value.

Implementation

List<JrlLine> result() {
  List<JrlLine> res = [];
  preparedLines.forEach((line) {
    if (line.valuta > 0) res.add(line);
  });
  return res;
}