copyWith method
ContentLookAndFeel
copyWith({
- ScreenLookAndFeel? screen,
- ContainerLookAndFeel? container,
- ContainerLookAndFeel? header,
- ContainerLookAndFeel? body,
Implementation
ContentLookAndFeel copyWith(
{ScreenLookAndFeel? screen,
ContainerLookAndFeel? container,
ContainerLookAndFeel? header,
ContainerLookAndFeel? body}) {
return ContentLookAndFeel(
screen: screen ?? this.screen,
container: container ?? this.container,
header: header ?? this.header,
body: body ?? this.body,
);
}