CustomColorTheme constructor

CustomColorTheme({
  1. String? themeColor,
  2. String? textColor,
  3. String? backgroundColor,
  4. String? tileColor,
  5. String? buttonMainColor,
  6. String? buttonSecondaryColor,
})

Implementation

CustomColorTheme({
  this.themeColor,
  this.textColor,
  this.backgroundColor,
  this.tileColor,
  this.buttonMainColor,
  this.buttonSecondaryColor,
});