NetworkNode constructor
NetworkNode({})
Implementation
NetworkNode({
required this.id,
this.label,
this.group,
double? x,
double? y,
this.vx = 0,
this.vy = 0,
this.fixed = false,
this.radius = 10,
this.color,
this.metadata,
}) : x = x ?? 0,
y = y ?? 0;