CustomNodeInit.fromJson constructor

CustomNodeInit.fromJson(
  1. Map json_
)

Implementation

CustomNodeInit.fromJson(core.Map json_)
  : this(
      initScript: json_.containsKey('initScript')
          ? InitScript.fromJson(
              json_['initScript'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );