CupertinoControls constructor

const CupertinoControls({
  1. required Color backgroundColor,
  2. required Color iconColor,
  3. Key? key,
})

Implementation

const CupertinoControls({
  required this.backgroundColor,
  required this.iconColor,
  Key? key,
}) : super(key: key);