Color constructor
const
Color({})
Implementation
const Color({
required this.r,
required this.g,
required this.b,
this.a = 255,
Color? darker,
Color? lighter,
}) : _darker = darker,
_lighter = lighter;