NomoColorThemeData constructor

NomoColorThemeData(
  1. {required NomoColors colors,
  2. NomoComponentColors buildComponents(
    1. NomoColors core
    ) = NomoComponentColors.defaultComponents}
)

Implementation

NomoColorThemeData({
  required this.colors,
  NomoComponentColors Function(NomoColors core) buildComponents =
      NomoComponentColors.defaultComponents,
}) : components = buildComponents.call(colors);