copyWith method
SpaceExpandable
copyWith(
{ - String? settings,
- String? metadata,
- String? operations,
- String? lookAndFeel,
- String? permissions,
- String? icon,
- String? description,
- String? theme,
- String? history,
- String? homepage,
- String? identifiers,
})
Implementation
SpaceExpandable copyWith(
{String? settings,
String? metadata,
String? operations,
String? lookAndFeel,
String? permissions,
String? icon,
String? description,
String? theme,
String? history,
String? homepage,
String? identifiers}) {
return SpaceExpandable(
settings: settings ?? this.settings,
metadata: metadata ?? this.metadata,
operations: operations ?? this.operations,
lookAndFeel: lookAndFeel ?? this.lookAndFeel,
permissions: permissions ?? this.permissions,
icon: icon ?? this.icon,
description: description ?? this.description,
theme: theme ?? this.theme,
history: history ?? this.history,
homepage: homepage ?? this.homepage,
identifiers: identifiers ?? this.identifiers,
);
}