ResponsiveMaster constructor

const ResponsiveMaster({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. ResponsiveMasterModel deviceInfo
    ),
  3. bool materialApp = false,
  4. ResponsiveMasterConfig? config,
})

Implementation

const ResponsiveMaster({
  super.key,
  required this.builder,
  this.materialApp = false,
  this.config,
});