toOptionsJSON method
Implementation
@override
void toOptionsJSON(StringBuffer buffer) {
super.toOptionsJSON(buffer);
if (disabled != null) {
buffer.writeAll(['"disabled":', disabled?.toJSON(), ','], '');
}
if (hover != null) {
buffer.writeAll(['"hover":', hover?.toJSON(), ','], '');
}
if (select != null) {
buffer.writeAll(['"select":', select?.toJSON(), ','], '');
}
}