GithubMilestoneValue constructor
const
GithubMilestoneValue({
- int? id,
- int? number,
- String? state,
- String? title,
- String? description,
- String? nodeId,
- @refParam GithubUserModelRef? creator,
- @Default.new(0) int openIssuesCount,
- @Default.new(0) int closedIssuesCount,
- ModelUri? url,
- ModelUri? htmlUrl,
- ModelUri? labelsUrl,
- ModelTimestamp? dueOn,
- ModelTimestamp? closedAt,
- @Default.new(ModelTimestamp.now()) ModelTimestamp createdAt,
- @Default.new(ModelTimestamp.now()) ModelTimestamp updatedAt,
Model for managing Github milestones.
Githubのマイルストーンを管理するためのモデル。
Implementation
const factory GithubMilestoneValue({
int? id,
int? number,
String? state,
String? title,
String? description,
String? nodeId,
@refParam GithubUserModelRef? creator,
@Default(0) int openIssuesCount,
@Default(0) int closedIssuesCount,
ModelUri? url,
ModelUri? htmlUrl,
ModelUri? labelsUrl,
ModelTimestamp? dueOn,
ModelTimestamp? closedAt,
@Default(ModelTimestamp.now()) ModelTimestamp createdAt,
@Default(ModelTimestamp.now()) ModelTimestamp updatedAt,
}) = _GithubMilestoneValue;