SyncListReposByCollectionOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const SyncListReposByCollectionOutput({
  1. String? cursor,
  2. @RepoConverter() required List<Repo> repos,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SyncListReposByCollectionOutput({
  String? cursor,
  @RepoConverter() required List<Repo> repos,

  Map<String, dynamic>? $unknown,
}) = _SyncListReposByCollectionOutput;