bind method
Implementation
CellCupertinoPageScaffold bind({
ValueCell<ObstructingPreferredSizeWidget?>? navigationBar,
ValueCell<Color?>? backgroundColor,
ValueCell<bool>? resizeToAvoidBottomInset,
ValueCell<Widget>? child,
}) =>
CellCupertinoPageScaffold(
navigationBar: navigationBar ?? this.navigationBar,
backgroundColor: backgroundColor ?? this.backgroundColor,
resizeToAvoidBottomInset:
resizeToAvoidBottomInset ?? this.resizeToAvoidBottomInset,
child: child ?? this.child,
);