GradOf.orangeAccent constructor

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

A gradient of four shades of orange accent.

See also: OrangeAccents.

Implementation

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