Composer constructor

const Composer({
  1. required BuildContext context,
  2. required bool isLandscape,
  3. required bool isPortrait,
  4. required bool isMobile,
  5. required bool isTablet,
  6. required bool isDesktop,
})

Implementation

const Composer({
  required this.context,
  required this.isLandscape,
  required this.isPortrait,
  required this.isMobile,
  required this.isTablet,
  required this.isDesktop,
});