toOptionsJSON method

  1. @override
void toOptionsJSON(
  1. StringBuffer buffer
)
override

Implementation

@override
void toOptionsJSON(StringBuffer buffer) {
  super.toOptionsJSON(buffer);

  if (showSkipSummary != null) {
    buffer.writeAll(['"showSkipSummary":', showSkipSummary, ','], '');
  }
  if (timeBufferCopy != null) {
    buffer.writeAll(['"timeBufferCopy":', timeBufferCopy, ','], '');
  }
  if (timeKDTree != null) {
    buffer.writeAll(['"timeKDTree":', timeKDTree, ','], '');
  }
  if (timeRendering != null) {
    buffer.writeAll(['"timeRendering":', timeRendering, ','], '');
  }
  if (timeSeriesProcessing != null) {
    buffer
        .writeAll(['"timeSeriesProcessing":', timeSeriesProcessing, ','], '');
  }
  if (timeSetup != null) {
    buffer.writeAll(['"timeSetup":', timeSetup, ','], '');
  }
}