orangeAccentBox method
Wraps the widget in a ColoredBox with active orange color.
Uses CupertinoColors.activeOrange which is a more vibrant orange typically used for active states, selected items, or emphasized elements.
Returns a ColoredBox containing the current widget with active orange background.
Example:
Text('Hot Deal').orangeAccentBox()
Implementation
ColoredBox orangeAccentBox() => coloredBox(CupertinoColors.activeOrange);