SyncGetRepoInput constructor

  1. @JsonSerializable(includeIfNull: false)
const SyncGetRepoInput({
  1. required String did,
  2. String? since,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SyncGetRepoInput({
  /// The DID of the repo.
  required String did,

  /// The revision ('rev') of the repo to create a diff from.
  String? since,

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