toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'show': show,
'trigger': trigger,
'axisPointer': axisPointer?.toJson(),
'formatter': formatter,
'showDelay': showDelay,
'hideDelay': hideDelay,
'transitionDuration': transitionDuration,
'enterable': enterable,
'confine': confine,
'renderMode': renderMode,
'backgroundColor': backgroundColor,
'borderColor': borderColor,
'borderWidth': borderWidth,
'borderRadius': borderRadius,
'padding': padding,
'textStyle': textStyle,
'extraCssText': extraCssText,
};
}