toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    ...super.toJson(),
    'points': points,
    if (startStyle != null) 'startStyle': startStyle,
    if (endStyle != null) 'endStyle': endStyle,
  };
}