GithubLabelValue constructor

const GithubLabelValue({
  1. String? name,
  2. String? color,
  3. String? description,
})

Model for managing Github labels.

Githubのラベルを管理するためのモデル。

Implementation

const factory GithubLabelValue({
  String? name,
  String? color,
  String? description,
}) = _GithubLabelValue;