PointConnectionStyle.fromMap constructor
Creates a PointConnectionStyle object from a map.
The map
parameter is a map representation of the PointConnectionStyle object.
Implementation
factory PointConnectionStyle.fromMap(Map<String, dynamic> map) {
return PointConnectionStyle(
type: PointConnectionType.values.byName(map['type']),
dotSize: map['dotSize'] as double,
spacing: map['spacing'] as double,
dashSize: map['dashSize'] as double,
lineWidth: map['lineWidth'] as double,
color: Color(map['color'] as int),
);
}