GradOf.lightGreenAccent constructor

const GradOf.lightGreenAccent({
  1. bool growable = false,
})

A gradient of four shades of lightGreen accent.

See also: LightGreenAccents.

Implementation

const GradOf.lightGreenAccent({bool growable = false})
    // coverage:ignore-start
    : super(
        const LightGreenAccents(),
        growable: growable,
      );