copyWith method
DependentAvailableToolIdentifier
copyWith({
- String? id,
- String? name,
- String? type,
- int? createdAtUnixSecs,
- DependentAvailableToolIdentifierAccessLevel? accessLevel,
Implementation
DependentAvailableToolIdentifier copyWith(
{String? id,
String? name,
String? type,
int? createdAtUnixSecs,
enums.DependentAvailableToolIdentifierAccessLevel? accessLevel}) {
return DependentAvailableToolIdentifier(
id: id ?? this.id,
name: name ?? this.name,
type: type ?? this.type,
createdAtUnixSecs: createdAtUnixSecs ?? this.createdAtUnixSecs,
accessLevel: accessLevel ?? this.accessLevel);
}