makeLighter method

Color makeLighter([
  1. double percent = .5
])

Lightens the color by blending it with white

TheColor: Color percent: Blending percentage

Returns the blended color

Implementation

Color makeLighter([double percent = .5]) => mergeWith(Colors.white, percent);