toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final followPoint = this.followPoint;
  final referenceActionName = this.referenceActionName;
  return {
    'followPoint': followPoint.toValue(),
    'referenceActionName': referenceActionName,
  };
}