PointConnectionStyle.fromJson constructor

PointConnectionStyle.fromJson(
  1. 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>);