copyWith method
Implementation
AgentSummaryResponseModel copyWith(
{String? agentId,
String? name,
List<String>? tags,
int? createdAtUnixSecs,
ResourceAccessInfo? accessInfo}) {
return AgentSummaryResponseModel(
agentId: agentId ?? this.agentId,
name: name ?? this.name,
tags: tags ?? this.tags,
createdAtUnixSecs: createdAtUnixSecs ?? this.createdAtUnixSecs,
accessInfo: accessInfo ?? this.accessInfo);
}