GithubBranchModel constructor
- @JsonSerializable.new(explicitToJson: true)
- String? name,
- @jsonParam GithubCommitModel? commit,
- @refParam GithubBranchModelRef? baseRef,
- @Default.new(false) bool fromServer,
Model for managing Github branches.
Githubのブランチを管理するためのモデル。
Implementation
@JsonSerializable(explicitToJson: true)
const factory GithubBranchModel({
String? name,
@jsonParam GithubCommitModel? commit,
@refParam GithubBranchModelRef baseRef,
@Default(false) bool fromServer,
}) = _GithubBranchModel;