getDoubles method

List<DoubleOutput> getDoubles()

Retrieves all double parameter output definitions.

Implementation

List<DoubleOutput> getDoubles() {
  var ls = <DoubleOutput>[];
  if (modify) {
    _nativeModify!.doubles.forEach((element) {ls.add(DoubleOutput(element));});
  } else {
    _native!.doubles.forEach((element) {ls.add(DoubleOutput(element));});
  }
  return List.unmodifiable(ls);
}