CuteWidget<I> constructor

const CuteWidget<I>({
  1. required WidgetModel<CuteWidget> wmFactory(
    1. BuildContext
    ),
  2. Key? key,
})

Implementation

const CuteWidget({
  required this.wmFactory,
  Key? key,
}) : super(key: key);