MaterialPalette constructor

MaterialPalette({@required Color primaryColor, @required Color accentColor, Color secondaryColor, Color textColor, Color darkPrimaryColor, Color lightPrimaryColor, Color secondaryTextColor, Color iconColor, Color dividerColor })

Implementation

MaterialPalette({
  @required this.primaryColor,
  @required this.accentColor,
  this.secondaryColor,
  this.textColor,
  this.darkPrimaryColor,
  this.lightPrimaryColor,
  this.secondaryTextColor,
  this.iconColor,
  this.dividerColor,
});