PointConnectionStyle.fromJson constructor
PointConnectionStyle.fromJson(
- String source
Creates a PointConnectionStyle object from a JSON string.
The source
parameter is a JSON string representation of the PointConnectionStyle object.
Implementation
factory PointConnectionStyle.fromJson(String source) =>
PointConnectionStyle.fromMap(json.decode(source) as Map<String, dynamic>);