copyWith method
Implementation
NomoRouteBodyThemeData copyWith([NomoRouteBodyThemeDataNullable? override]) {
return NomoRouteBodyThemeData(
backgroundColor: override?.backgroundColor ?? backgroundColor,
background: override?.background ?? background,
padding: override?.padding ?? padding,
scrollBarThickness: override?.scrollBarThickness ?? scrollBarThickness,
scrollBarRadius: override?.scrollBarRadius ?? scrollBarRadius,
maxContentWidth: override?.maxContentWidth ?? maxContentWidth,
);
}