merge method

WheelOptions merge([
  1. WheelOptions? options
])

Implementation

WheelOptions merge([WheelOptions? options]) => copyWith(
    itemExtent: options?.itemExtent,
    diameterRatio: options?.diameterRatio,
    offAxisFraction: options?.offAxisFraction,
    perspective: options?.perspective,
    magnification: options?.magnification,
    useMagnifier: options?.useMagnifier,
    squeeze: options?.squeeze,
    physics: options?.physics,
    selectionOverlay: options?.selectionOverlay,
    backgroundColor: options?.backgroundColor,
    isCupertino: options?.isCupertino,
    clipBehavior: options?.clipBehavior,
    overAndUnderCenterOpacity: options?.overAndUnderCenterOpacity,
    renderChildrenOutsideViewport: options?.renderChildrenOutsideViewport,
    scrollBehavior: options?.scrollBehavior,
    restorationId: options?.restorationId);