class KnowledgePoint { int? id; double? top; double? left; double? right; String? title; bool? leared; KnowledgePoint({ this.id, this.top, this.left, this.right, this.title, this.leared, }); }