PointStyle.fromMap constructor
Creates a PointStyle object from a map.
Implementation
factory PointStyle.fromMap(Map<String, dynamic> map) {
return PointStyle(
size: map['size'] as double,
color: Color(map['color'] as int),
);
}
Creates a PointStyle object from a map.
factory PointStyle.fromMap(Map<String, dynamic> map) {
return PointStyle(
size: map['size'] as double,
color: Color(map['color'] as int),
);
}