copyWith method

FolderViewNodeStyleTheme copyWith({
  1. double? borderRadius,
})

Creates a copy of this theme with the given fields replaced

Implementation

FolderViewNodeStyleTheme copyWith({double? borderRadius}) {
  return FolderViewNodeStyleTheme(
    borderRadius: borderRadius ?? this.borderRadius,
  );
}