BusinessTheme constructor

BusinessTheme({
  1. required bool dark,
  2. required bool showTabBar,
  3. required String themeColor,
  4. required String primaryColor,
  5. required String secondaryColor,
  6. required bool isLoginRequired,
  7. required String screenBackground,
})

Implementation

BusinessTheme({
  required this.dark,
  required this.showTabBar,
  required this.themeColor,
  required this.primaryColor,
  required this.secondaryColor,
  required this.isLoginRequired,
  required this.screenBackground,
});