SparkPlanGraphEdge.fromJson constructor

SparkPlanGraphEdge.fromJson(
  1. Map json_
)

Implementation

SparkPlanGraphEdge.fromJson(core.Map json_)
  : this(
      fromId: json_['fromId'] as core.String?,
      toId: json_['toId'] as core.String?,
    );