PointStyle.fromJson constructor

PointStyle.fromJson(
  1. Map json_
)

Implementation

PointStyle.fromJson(core.Map json_)
  : this(
      shape: json_['shape'] as core.String?,
      size: (json_['size'] as core.num?)?.toDouble(),
    );