GradOf.yellowAccent constructor

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

A gradient of four shades of yellow accent.

See also: yellowAccents.

Implementation

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