cyanBox method
Wraps the widget in a ColoredBox with system cyan color.
Uses CupertinoColors.systemCyan which adapts to light/dark mode. This is the standard cyan color used throughout iOS interfaces, often used for technology or digital-themed elements.
Returns a ColoredBox containing the current widget with cyan background.
Example:
Icon(CupertinoIcons.wifi).cyanBox()
Implementation
ColoredBox cyanBox() => coloredBox(CupertinoColors.systemCyan);