PointStyle.fromJson constructor

PointStyle.fromJson(
  1. String source
)

Creates a PointStyle object from a JSON string.

Implementation

factory PointStyle.fromJson(String source) =>
    PointStyle.fromMap(json.decode(source) as Map<String, dynamic>);