CupertinoPickerSelectionOverlay constructor

const CupertinoPickerSelectionOverlay({
  1. Key? key,
  2. Color background = CupertinoColors.tertiarySystemFill,
  3. EdgeInsetsGeometry margin = const EdgeInsets.all(0),
  4. BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.zero),
  5. BoxBorder? border,
})

Implementation

const CupertinoPickerSelectionOverlay({
  super.key,
  this.background = CupertinoColors.tertiarySystemFill,
  this.margin = const EdgeInsets.all(0),
  this.borderRadius = const BorderRadius.all(Radius.zero),
  this.border
});