RemoteAgentMetadata constructor

const RemoteAgentMetadata({
  1. required String taskId,
  2. required String remoteTaskType,
  3. required String sessionId,
  4. required String title,
  5. required String command,
  6. required int spawnedAt,
  7. String? toolUseId,
  8. bool? isLongRunning,
  9. bool? isUltraplan,
  10. bool? isRemoteReview,
  11. Map<String, dynamic>? remoteTaskMetadata,
})

Implementation

const RemoteAgentMetadata({
  required this.taskId,
  required this.remoteTaskType,
  required this.sessionId,
  required this.title,
  required this.command,
  required this.spawnedAt,
  this.toolUseId,
  this.isLongRunning,
  this.isUltraplan,
  this.isRemoteReview,
  this.remoteTaskMetadata,
});