sendToBack static method

EditorEdit sendToBack(
  1. ElementId id
)

Implementation

static EditorEdit sendToBack(rt.ElementId id) {
  return (scene) {
    return EditorEditResult(
      scene: rt.SceneTreeOps.sendToBack(scene, id),
      primaryId: id,
    );
  };
}