Map<int, Color> deepOrangeAccent = const {100 : const Color(0xFFFF9E80), 200 : const Color(0xFFFF6E40), 400 : const Color(0xFFFF3D00), 700 : const Color(0xFFDD2C00)}

The deep orange accent swatch.

 new Icon(
   icon: Icons.widgets,
   color: Colors.deepOrangeAccent[400],
 ),

See also:

  • deepOrange, the corresponding primary colors.
  • of, which allows you to select colors from the current theme rather than hard-coding colors in your build methods.