bind method

CellCupertinoPageScaffold bind({
  1. ValueCell<ObstructingPreferredSizeWidget?>? navigationBar,
  2. ValueCell<Color?>? backgroundColor,
  3. ValueCell<bool>? resizeToAvoidBottomInset,
  4. ValueCell<Widget>? child,
})

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,
    );