GradOf.tealAccent constructor

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

A gradient of four shades of teal accent.

See also: TealAccents.

Implementation

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