GithubActionsLogModel constructor

  1. @JsonSerializable.new(explicitToJson: true)
const GithubActionsLogModel({
  1. int? runId,
  2. int? jobId,
  3. int? chunk,
  4. String? name,
  5. ModelUri? downloadUrl,
  6. @Default.new("") String text,
  7. ModelTimestamp? createdAt,
  8. @Default.new(false) bool fromServer,
})

Value for model.

Implementation

// ignore: invalid_annotation_target
@JsonSerializable(explicitToJson: true)
const factory GithubActionsLogModel({
  int? runId,
  int? jobId,
  int? chunk,
  String? name,
  ModelUri? downloadUrl,
  @Default("") String text,
  ModelTimestamp? createdAt,
  @Default(false) bool fromServer,
}) = _GithubActionsLogModel;