ScreenUtilsView constructor

const ScreenUtilsView({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext,
    2. ScreenUtils
    ),
})

Implementation

const ScreenUtilsView({
  Key? key,
  required this.builder,
}) : super(key: key);