copyWith method

DependentAvailableToolIdentifier copyWith({
  1. String? id,
  2. String? name,
  3. String? type,
  4. int? createdAtUnixSecs,
  5. 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);
}