bind method

CellCupertinoPopupSurface bind({
  1. ValueCell<bool>? isSurfacePainted,
  2. ValueCell<Widget?>? child,
})

Implementation

CellCupertinoPopupSurface bind({
  ValueCell<bool>? isSurfacePainted,
  ValueCell<Widget?>? child,
}) =>
    CellCupertinoPopupSurface(
      isSurfacePainted: isSurfacePainted ?? this.isSurfacePainted,
      child: child ?? this.child,
    );