copyWith method
Implementation
AgentTransfer copyWith({String? agentId, String? condition}) {
return AgentTransfer(
agentId: agentId ?? this.agentId,
condition: condition ?? this.condition);
}
AgentTransfer copyWith({String? agentId, String? condition}) {
return AgentTransfer(
agentId: agentId ?? this.agentId,
condition: condition ?? this.condition);
}