GradOf.lightBlueAccent constructor

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

A gradient of four shades of light-blue accent.

See also: LightBlueAccents.

Implementation

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