copyWith method

AgentTransfer copyWith({
  1. String? agentId,
  2. String? condition,
})

Implementation

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