copyWith method

  1. @deprecated
BaseContainerOptions copyWith({
  1. dynamic allowDebugging = true,
  2. dynamic padding = EdgeInsets.zero,
  3. dynamic showBottomBar = false,
  4. dynamic backgroundColor = Colors.white,
  5. dynamic showTopBar = false,
  6. dynamic bottomBarColor,
})

BaseContainerOptions.copyWith has been deprecated use BaseContainerOptions.defaultSetup instead.

Implementation

@deprecated
BaseContainerOptions copyWith(
    {allowDebugging = true,
    padding = EdgeInsets.zero,
    showBottomBar = false,
    backgroundColor = Colors.white,
    showTopBar = false,
    bottomBarColor}) {
  return BaseContainerOptions();
}