Repo constructor

  1. @JsonSerializable(includeIfNull: false)
const Repo({
  1. @Default('com.atproto.sync.listReposByCollection#repo') String $type,
  2. required String did,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory Repo({
  @Default('com.atproto.sync.listReposByCollection#repo') String $type,
  required String did,

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