mergePicker method

PickerWheelOptions mergePicker([
  1. PickerWheelOptions? options
])

Implementation

PickerWheelOptions mergePicker([PickerWheelOptions? options]) =>
    PickerWheelOptions(
        diameterRatio: options?.diameterRatio ?? diameterRatio,
        offAxisFraction: options?.offAxisFraction ?? offAxisFraction,
        perspective: options?.perspective ?? perspective,
        magnification: options?.magnification ?? magnification,
        useMagnifier: options?.useMagnifier ?? useMagnifier,
        squeeze: options?.squeeze ?? squeeze,
        isCupertino: options?.isCupertino ?? isCupertino,
        physics: options?.physics ?? physics,
        backgroundColor: options?.backgroundColor ?? backgroundColor,
        itemWidth: options?.itemWidth ?? itemWidth);