Connector constructor Null safety
Implementation
const Connector({
Key? key,
this.direction,
this.space,
this.thickness,
this.indent,
this.endIndent,
this.color,
}) : assert(thickness == null || thickness >= 0.0),
assert(space == null || space >= 0.0),
assert(indent == null || indent >= 0.0),
assert(endIndent == null || endIndent >= 0.0),
super(key: key);