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