GradOf.limeAccent constructor

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

A gradient of four shades of lime accent.

See also: LimeAccents.

Implementation

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