ringGradient property

List<Color>? ringGradient
final

Creates ring colors from a list of colors (gradient will be forcefully switched to true).

This list of colors is used for painting the first ring. For subsequent rings, start color will be last color in previous ring(for consistency). Example: ringGradient = [a,b] 1st ring -> Gradient of a->b 2nd ring -> Gradient of b->brighten(b) 3rd ring -> Gradient of brighten(b)->brighten(b, 2x)..

Implementation

final List<Color>? ringGradient;