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