NavigationFeatureProperty.fromJson constructor

NavigationFeatureProperty.fromJson(
  1. Map<String, dynamic> json
)

Implementation

NavigationFeatureProperty.fromJson(Map<String, dynamic> json) {
  contour = (json['contour'] as num?)?.toInt();
  color = json['color'] as String?;
  opacity = (json['opacity'] as num?)?.toDouble();
  fill = json['fill'] as String?;
  fillColor = json['fillColor'] as String?;
  fillOpacity = (json['fillOpacity'] as num?)?.toDouble();
}