copyWith method
Creates a copy of this theme with the given fields replaced
Implementation
FolderViewNodeStyleTheme copyWith({double? borderRadius}) {
return FolderViewNodeStyleTheme(
borderRadius: borderRadius ?? this.borderRadius,
);
}
Creates a copy of this theme with the given fields replaced
FolderViewNodeStyleTheme copyWith({double? borderRadius}) {
return FolderViewNodeStyleTheme(
borderRadius: borderRadius ?? this.borderRadius,
);
}