Control.page constructor
Implementation
factory Control.page({
required List<Control> controls,
required String title,
Widget? prefixIcon,
}) =>
Control(
type: ControlType.page,
key: 'page_$title',
title: title,
settings: controls,
prefixIcon: prefixIcon,
);