toOptionsJSON method
Implementation
@override
void toOptionsJSON(StringBuffer buffer) {
super.toOptionsJSON(buffer);
if (bottomBand != null) {
buffer.writeAll(['"bottomBand":', bottomBand, ','], '');
}
if (index != null) {
buffer.writeAll(['"index":', index, ','], '');
}
if (period != null) {
buffer.writeAll(['"period":', period, ','], '');
}
if (topBand != null) {
buffer.writeAll(['"topBand":', topBand, ','], '');
}
}