GithubBranchModel constructor

const GithubBranchModel({
  1. String? name,
  2. @jsonParam GithubCommitModel? commit,
  3. @refParam GithubBranchModelRef? baseRef,
  4. @Default.new(false) bool fromServer,
})

Model for managing Github branches.

Githubのブランチを管理するためのモデル。

Implementation

const factory GithubBranchModel({
  String? name,
  @jsonParam GithubCommitModel? commit,
  @refParam GithubBranchModelRef baseRef,
  @Default(false) bool fromServer,
}) = _GithubBranchModel;