PrimaryColor constructor

const PrimaryColor({
  1. Brightness brightness = Brightness.dark,
  2. required String name,
})

Creates a PrimaryColor.

Implementation

const PrimaryColor({
  this.brightness = Brightness.dark,
  required this.name,
});