BaseView<T> constructor

BaseView<T>({
  1. Key? key,
})

Implementation

BaseView({Key? key})
    : super(
        key: key,
        alwaysUseBuilder: false,
        settings: const ResponsiveScreenSettings(),
      );