SystemColor constructor

const SystemColor({
  1. required String name,
  2. Color? value,
})

Creates an instance of a system color.

name is the name of the color. System colors provided by static getters in this class, such as accentColor and buttonText, use standard names defined by the W3C CSS specification.

value is the color value, if this color name is supported, and null if it's unsupported.

Implementation

const SystemColor({required this.name, this.value});