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